3 overrides of GetCharCount
System.Text.Encoding.CodePages (3)
System\Text\DBCSCodePageEncoding.cs (1)
767public override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS? baseDecoder)
System\Text\ISCIIEncoding.cs (1)
301public override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS? baseDecoder)
System\Text\SBCSCodePageEncoding.cs (1)
657public override unsafe int GetCharCount(byte* bytes, int count, DecoderNLS? decoder)
3 references to GetCharCount
System.Text.Encoding.CodePages (3)
System\Text\DecoderNLS.cs (1)
111return m_encoding.GetCharCount(bytes, count, this);
System\Text\EncodingNLS.cs (2)
212return GetCharCount(pBytes + index, count, null); 225return GetCharCount(bytes, count, null);