2 references to LCS
Microsoft.Arcade.Test.Common (2)
DiffUtil.cs (2)
38
public static readonly LCS<T> Default = new
LCS
<T>((left, right) => EqualityComparer<T>.Default.Equals(left, right));
76
var lcs = (comparer != null) ? new
LCS
<T>(comparer) : LCS<T>.Default;