2 writes to m_decoder
mscorlib (2)
system\io\binaryreader.cs (2)
62m_decoder = encoding.GetDecoder(); 100m_decoder = null;
5 references to m_decoder
mscorlib (5)
system\io\binaryreader.cs (5)
78Contract.Assert(m_decoder!=null, "[BinaryReader.ctor]m_decoder!=null"); 284charsRead = m_decoder.GetChars(m_charBytes, 0, n, m_charBuffer, 0); 345DecoderNLS decoder = m_decoder as DecoderNLS; 391charsRead = m_decoder.GetChars(pBytes + position, numBytes, pChars + index, charsRemaining, false); 455charsRead = m_decoder.GetChars(m_charBytes, 0, numBytes, m_singleChar, 0);