9 overrides of GetChars
mscorlib (9)
system\text\asciiencoding.cs (1)
829internal override unsafe int GetChars(byte* bytes, int byteCount,
system\text\dbcscodepageencoding.cs (1)
930internal override unsafe int GetChars(byte* bytes, int byteCount,
system\text\isciiencoding.cs (1)
362internal override unsafe int GetChars(byte* bytes, int byteCount,
system\text\latin1encoding.cs (1)
408internal override unsafe int GetChars(byte* bytes, int byteCount,
system\text\sbcscodepageencoding.cs (1)
741internal override unsafe int GetChars(byte* bytes, int byteCount,
system\text\unicodeencoding.cs (1)
1491internal override unsafe int GetChars(byte* bytes, int byteCount,
system\text\utf32encoding.cs (1)
901internal override unsafe int GetChars(byte* bytes, int byteCount,
system\text\utf7encoding.cs (1)
669internal override unsafe int GetChars(byte* bytes, int byteCount,
system\text\utf8encoding.cs (1)
1687internal override unsafe int GetChars(byte* bytes, int byteCount,
5 references to GetChars
mscorlib (5)
system\string.cs (1)
1420int doubleCheck = encoding.GetChars(bytes, byteLength, pTempChars, stringLength, null);
system\text\decodernls.cs (2)
195return m_encoding.GetChars(bytes, byteCount, chars, charCount, this); 268charsUsed = this.m_encoding.GetChars(bytes, byteCount, chars, charCount, this);
system\text\encodingnls.cs (2)
309return GetChars(pBytes + byteIndex, byteCount, 329return GetChars(bytes, byteCount, chars, charCount, null);