Exemple #1
0
        public EditScript Execute(IList A, IList B)
        {
            int[] arHashA = HashStringList(A);
            int[] arHashB = HashStringList(B);

            MyersDiff Diff = new MyersDiff(arHashA, arHashB);
            return Diff.Execute();
        }
Exemple #2
0
        public EditScript Execute(IList A, IList B)
        {
            int[] arHashA = HashStringList(A);
            int[] arHashB = HashStringList(B);

            MyersDiff Diff = new MyersDiff(arHashA, arHashB);

            return(Diff.Execute());
        }