3 writes to m_CharsRead
Microsoft.VisualBasic.Core (3)
Microsoft\VisualBasic\FileIO\TextFieldParser.vb (3)
671m_CharsRead = m_Reader.Read(m_Buffer, 0, BufferLength) 700m_CharsRead = ContentLength + CharsRead 741m_CharsRead += CharsRead
14 references to m_CharsRead
Microsoft.VisualBasic.Core (14)
Microsoft\VisualBasic\FileIO\TextFieldParser.vb (14)
183If m_Reader.Peek = -1 And m_Position = m_CharsRead Then 427Builder.Append(m_Buffer, m_Position, m_CharsRead - m_Position) 674Return m_CharsRead 694Dim ContentLength As Integer = m_CharsRead - m_Position 722m_PeekPosition = m_CharsRead 724If m_CharsRead = m_Buffer.Length Then 738Dim CharsRead As Integer = m_Reader.Read(m_Buffer, m_CharsRead, m_Buffer.Length - m_CharsRead) 739Debug.Assert(CharsRead <= m_Buffer.Length - m_CharsRead, "We've read more chars than we have space for") 812Debug.Assert(Cursor >= 0 And Cursor <= m_CharsRead, "The cursor is out of range") 815If Cursor = m_CharsRead Then 826For i As Integer = Cursor To m_CharsRead - 1 845If Cursor < m_CharsRead Then 864Dim Size As Integer = m_CharsRead - Cursor