1 write to _buffer
Microsoft.CodeAnalysis.Workspaces (1)
Differencing\LongestCommonSubsequence.cs (1)
181
_buffer
= buffer;
7 references to _buffer
Microsoft.CodeAnalysis.Workspaces (7)
Differencing\LongestCommonSubsequence.cs (7)
205
Array.Clear(
_buffer
, _start, dstCopyStart);
206
Array.Copy(other.
_buffer
, other._start + srcCopyStart,
_buffer
, _start + dstCopyStart, copyLength);
207
Array.Clear(
_buffer
, _start + dstCopyStart + copyLength, _length - dstCopyStart - copyLength);
211
=> Array.Clear(
_buffer
, _start, _length);
215
get =>
_buffer
[_start + index + Offset];
216
set =>
_buffer
[_start + index + Offset] = value;