4 writes to _chars
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (4)
1421
_chars
= inCharStart;
1492
_chars
--; // don't use last char
1502
return fallbackBuffer.InternalFallback(charFallback, ref
_chars
);
1518
cReturn = *(
_chars
++);
6 references to _chars
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (6)
1441
fallbackBuffer.InternalInitialize(
_chars
, _charEnd, _encoder, _bytes is not null);
1488
Debug.Assert(
_chars
> _charStart ||
1491
if (
_chars
> _charStart)
1507
(fallbackBuffer.Remaining > 0) || (
_chars
< _charEnd);
1517
if (
_chars
< _charEnd)
1524
internal unsafe int CharsUsed => (int)(
_chars
- _charStart);