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