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)
44
public int Index =>
_index
;
55
while (
_index
< length)
57
if (line[
_index
] == '"')
60
if (
_index
+ 1 == length)
71
if (
_index
+ 1 < line.Length && line[
_index
+ 1] == '"')
80
Match delimiterMatch = _delimiterRegex.Match(line,
_index
+ 1);
90
for (int i =
_index
+ 1; i < Limit; i++)
100
_delimiterLength = 1 + Limit -
_index
;
111
_field.Append(line[
_index
]);