3 overrides of GetByteCount
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Text\EncoderNLS.cs (1)
64public override unsafe int GetByteCount(char* chars, int count, bool flush)
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (1)
1165public override unsafe int GetByteCount(char* chars, int count, bool flush) =>
System.Text.Encoding.CodePages (1)
System\Text\EncoderNLS.cs (1)
95public override unsafe int GetByteCount(char* chars, int count, bool flush)
2 references to GetByteCount
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Text\Encoder.cs (2)
112return GetByteCount(charsPtr, chars.Length, flush); 284if (GetByteCount(chars, charsUsed, flush) <= byteCount)