3 overrides of GetCharCount
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\DecoderNLS.cs (1)
66public override unsafe int GetCharCount(byte* bytes, int count, bool flush)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (1)
1219public override unsafe int GetCharCount(byte* bytes, int count, bool flush) =>
System.Text.Encoding.CodePages (1)
System\Text\DecoderNLS.cs (1)
97public override unsafe int GetCharCount(byte* bytes, int count, bool flush)
2 references to GetCharCount
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Decoder.cs (2)
115return GetCharCount(bytesPtr, bytes.Length, flush); 286if (GetCharCount(bytes, bytesUsed, flush) <= charCount)