10 overrides of GetCharCount
System.Console (1)
src\libraries\Common\src\System\Text\ConsoleEncoding.cs (1)
108public override unsafe int GetCharCount(byte* bytes, int count)
System.Formats.Asn1 (2)
System\Formats\Asn1\AsnCharacterStringEncodings.cs (2)
132public override unsafe int GetCharCount(byte* bytes, int count) 467public override unsafe int GetCharCount(byte* bytes, int count)
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Text\ASCIIEncoding.cs (1)
467public override unsafe int GetCharCount(byte* bytes, int count)
src\libraries\System.Private.CoreLib\src\System\Text\Latin1Encoding.cs (1)
333public override unsafe int GetCharCount(byte* bytes, int count)
src\libraries\System.Private.CoreLib\src\System\Text\UnicodeEncoding.cs (1)
256public override unsafe int GetCharCount(byte* bytes, int count)
src\libraries\System.Private.CoreLib\src\System\Text\UTF32Encoding.cs (1)
264public override unsafe int GetCharCount(byte* bytes, int count)
src\libraries\System.Private.CoreLib\src\System\Text\UTF7Encoding.cs (1)
300public override unsafe int GetCharCount(byte* bytes, int count)
src\libraries\System.Private.CoreLib\src\System\Text\UTF8Encoding.cs (1)
468public override unsafe int GetCharCount(byte* bytes, int count)
System.Text.Encoding.CodePages (1)
System\Text\EncodingNLS.cs (1)
208public override unsafe int GetCharCount(byte* bytes, int count)
4 references to GetCharCount
System.Console (1)
src\libraries\Common\src\System\Text\ConsoleEncoding.cs (1)
110return _encoding.GetCharCount(bytes, count);
System.Formats.Asn1 (1)
System\Formats\Asn1\AsnCharacterStringEncodings.cs (1)
475return s_latin1Encoding.GetCharCount(bytes, count);
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\String.cs (1)
540int stringLength = encoding.GetCharCount(bytes, byteLength);
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (1)
1221_encoding.GetCharCount(bytes, count);