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