2 references to new
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Protocol\SumType.cs (2)
77
public static implicit operator SumType<T1, T2>(T2 val) =>
new
(val);
83
public static implicit operator SumType<T1, T2>?(T2? val) => val is null ? null : new
SumType
<T1, T2>(val);