4 writes to _offset
System.Windows.Forms.Primitives (4)
System\Windows\Forms\Internals\UnicodeCharBuffer.cs (4)
39
_offset
= i;
46
_offset
= 0;
53
_offset
+= count;
56
_buffer[
_offset
++] = (char)0;
6 references to _offset
System.Windows.Forms.Primitives (6)
System\Windows\Forms\Internals\UnicodeCharBuffer.cs (6)
27
int i =
_offset
;
33
string result = new(_buffer,
_offset
, i -
_offset
);
51
int count = Math.Min(s.Length, _buffer.Length -
_offset
);
52
s.CopyTo(0, _buffer,
_offset
, count);
54
if (
_offset
< _buffer.Length)