3 writes to _current
mscorlib (3)
system\arraysegment.cs (3)
302
_current
= _start - 1;
309
_current
++;
335
_current
= _start - 1;
5 references to _current
mscorlib (5)
system\arraysegment.cs (5)
307
if (
_current
< _end)
310
return (
_current
< _end);
319
if (
_current
< _start) throw new InvalidOperationException(Environment.GetResourceString(ResId.InvalidOperation_EnumNotStarted));
320
if (
_current
>= _end) throw new InvalidOperationException(Environment.GetResourceString(ResId.InvalidOperation_EnumEnded));
321
return _array[
_current
];