4 writes to _index
Microsoft.Data.Analysis.Tests (4)
src\Microsoft.Data.Analysis\TextFieldParser.cs (4)
52_index = startAt; 67_index++; 74_index += 2; 112_index += 1;
10 references to _index
Microsoft.Data.Analysis.Tests (10)
src\Microsoft.Data.Analysis\TextFieldParser.cs (10)
44public int Index => _index; 55while (_index < length) 57if (line[_index] == '"') 60if (_index + 1 == length) 71if (_index + 1 < line.Length && line[_index + 1] == '"') 80Match delimiterMatch = _delimiterRegex.Match(line, _index + 1); 90for (int i = _index + 1; i < Limit; i++) 100_delimiterLength = 1 + Limit - _index; 111_field.Append(line[_index]);