2 instantiations of LCS
Microsoft.CodeAnalysis.Test.Utilities (2)
Assert\DiffUtil.cs (2)
41
public static readonly LCS<T> Default = new
LCS
<T>(EqualityComparer<T>.Default);
79
var lcs = (comparer != null) ? new
LCS
<T>(comparer) : LCS<T>.Default;
3 references to LCS
Microsoft.CodeAnalysis.Test.Utilities (3)
Assert\DiffUtil.cs (3)
41
public static readonly
LCS
<T> Default = new LCS<T>(EqualityComparer<T>.Default);
79
var
lcs = (comparer != null) ? new LCS<T>(comparer) :
LCS
<T>.Default;