2 writes to _index
Test.Utilities (2)
WordParser.cs (2)
556
char c = _text[
_index
++];
594
char c = _text[--
_index
];
3 references to _index
Test.Utilities (3)
WordParser.cs (3)
554
while (
_index
< _text.Length)
572
for (int index =
_index
; index < _text.Length; index++)
592
while (
_index
>= 0)