9 overrides of GetCharCount
mscorlib (9)
system\text\asciiencoding.cs (1)
756
internal override unsafe int
GetCharCount
(byte* bytes, int count, DecoderNLS decoder)
system\text\dbcscodepageencoding.cs (1)
784
internal override unsafe int
GetCharCount
(byte* bytes, int count, DecoderNLS baseDecoder)
system\text\isciiencoding.cs (1)
349
internal override unsafe int
GetCharCount
(byte* bytes, int count, DecoderNLS baseDecoder)
system\text\latin1encoding.cs (1)
396
internal override unsafe int
GetCharCount
(byte* bytes, int count, DecoderNLS decoder)
system\text\sbcscodepageencoding.cs (1)
657
internal override unsafe int
GetCharCount
(byte* bytes, int count, DecoderNLS decoder)
system\text\unicodeencoding.cs (1)
1152
internal override unsafe int
GetCharCount
(byte* bytes, int count, DecoderNLS baseDecoder)
system\text\utf32encoding.cs (1)
758
internal override unsafe int
GetCharCount
(byte* bytes, int count, DecoderNLS baseDecoder)
system\text\utf7encoding.cs (1)
659
internal override unsafe int
GetCharCount
(byte* bytes, int count, DecoderNLS baseDecoder)
system\text\utf8encoding.cs (1)
1292
internal override unsafe int
GetCharCount
(byte* bytes, int count, DecoderNLS baseDecoder)
4 references to GetCharCount
mscorlib (4)
system\string.cs (1)
1409
int stringLength = encoding.
GetCharCount
(bytes, byteLength, null);
system\text\decodernls.cs (1)
128
return m_encoding.
GetCharCount
(bytes, count, this);
system\text\encodingnls.cs (2)
247
return
GetCharCount
(pBytes + index, count, null);
266
return
GetCharCount
(bytes, count, null);