예제 #1
0
        /// <summary>
        /// Finds the diffs in the left array
        /// </summary>
        /// <returns>Difference containing the length and offsets of the diff</returns>
        public Difference FindDiffsInLeft()
        {
            byte[] diffs = LeftArray.Except(RightArray).ToArray();

            return(GetDifference(diffs, LeftArray));
        }