3 overrides of GetCharCount
mscorlib (2)
system\text\decodernls.cs (1)
84public override unsafe int GetCharCount(byte[] bytes, int index, int count, bool flush)
system\text\encoding.cs (1)
1852public override int GetCharCount(byte[] bytes, int index, int count, bool flush)
System.Xml (1)
System\Xml\XmlEncoding.cs (1)
27public override int GetCharCount( byte[] bytes, int index, int count, bool flush ) {
2 references to GetCharCount
mscorlib (2)
system\text\decoder.cs (2)
106char[] charTemp = new char[GetCharCount(byteTemp, 0, 0, true)]; 286if (GetCharCount(bytes, byteIndex, bytesUsed, flush) <= charCount)