2 instantiations of LCS
Microsoft.DotNet.NuGetRepack.Tests (2)
TestHelpers\DiffUtil.cs (2)
38
public static readonly LCS<T> Default = new
LCS
<T>(EqualityComparer<T>.Default);
76
var lcs = (comparer != null) ? new
LCS
<T>(comparer) : LCS<T>.Default;
3 references to LCS
Microsoft.DotNet.NuGetRepack.Tests (3)
TestHelpers\DiffUtil.cs (3)
38
public static readonly
LCS
<T> Default = new LCS<T>(EqualityComparer<T>.Default);
76
var
lcs = (comparer != null) ? new LCS<T>(comparer) :
LCS
<T>.Default;