Differencing\LongestCommonSubsequence.cs (6)
219Array.Clear(_buffer, _start, dstCopyStart);
220Array.Copy(other._buffer, other._start + srcCopyStart, _buffer, _start + dstCopyStart, copyLength);
221Array.Clear(_buffer, _start + dstCopyStart + copyLength, _length - dstCopyStart - copyLength);
225=> Array.Clear(_buffer, _start, _length);
229get => _buffer[_start + index + Offset];
230set => _buffer[_start + index + Offset] = value;