8 writes to _charsUsed
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\EncoderNLS.cs (1)
167
_charsUsed
= 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Encoding.Internal.cs (4)
420
encoder.
_charsUsed
= charCount;
567
encoder.
_charsUsed
= originalCharCount;
572
encoder.
_charsUsed
= originalCharCount - chars.Length; // total number of characters consumed up until now
699
encoder.
_charsUsed
= originalCharsLength - chars.Length; // number of chars consumed
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\UnicodeEncoding.cs (1)
970
encoder.
_charsUsed
= (int)(chars - charStart);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\UTF32Encoding.cs (1)
679
encoder.
_charsUsed
= (int)(chars - charStart);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\UTF7Encoding.cs (1)
532
encoder.
_charsUsed
= buffer.CharsUsed;
1 reference to _charsUsed
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\EncoderNLS.cs (1)
172
charsUsed =
_charsUsed
;