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