6 overrides of GetCharCount
mscorlib (6)
system\text\asciiencoding.cs (1)
280public override unsafe int GetCharCount(byte* bytes, int count)
system\text\encodingnls.cs (1)
254public override unsafe int GetCharCount(byte* bytes, int count)
system\text\unicodeencoding.cs (1)
317public override unsafe int GetCharCount(byte* bytes, int count)
system\text\utf32encoding.cs (1)
318public override unsafe int GetCharCount(byte* bytes, int count)
system\text\utf7encoding.cs (1)
387public override unsafe int GetCharCount(byte* bytes, int count)
system\text\utf8encoding.cs (1)
349public override unsafe int GetCharCount(byte* bytes, int count)
4 references to GetCharCount
mscorlib (4)
system\rttype.cs (1)
5956int cResult = Encoding.UTF8.GetCharCount(buf, m_StringHeapByteLength);
system\stubhelpers.cs (1)
221int numChar = Encoding.UTF8.GetCharCount((byte*)pNative, nbBytes);
system\text\encoding.cs (2)
1210return GetCharCount(bytes, count); 1862return m_encoding.GetCharCount(bytes, count);