2 overrides of GetChars
mscorlib (2)
system\text\decodernls.cs (1)
177public unsafe override int GetChars(byte* bytes, int byteCount,
system\text\encoding.cs (1)
1896public unsafe override int GetChars(byte* bytes, int byteCount,
2 references to GetChars
mscorlib (2)
system\io\binaryreader.cs (1)
391charsRead = m_decoder.GetChars(pBytes + position, numBytes, pChars + index, charsRemaining, false);
system\text\decoder.cs (1)
336charsUsed = GetChars(bytes, bytesUsed, chars, charCount, flush);