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