3 writes to _endIndex
System.Console (3)
System\IO\StdInReader.cs (3)
42
_endIndex
= 0;
71
_startIndex =
_endIndex
= 0;
85
_endIndex
+= charLen;
5 references to _endIndex
System.Console (5)
System\IO\StdInReader.cs (5)
51
return _startIndex >=
_endIndex
; // Everything has been processed;
75
Debug.Assert(
_endIndex
> 0);
76
int spaceRemaining = _unprocessedBufferToBeRead.Length -
_endIndex
;
84
chars.CopyTo(_unprocessedBufferToBeRead.AsSpan(
_endIndex
));
368
return KeyParser.Parse(_unprocessedBufferToBeRead, ConsolePal.TerminalFormatStringsInstance, ConsolePal.s_posixDisableValue, ConsolePal.s_veraseCharacter, ref _startIndex,
_endIndex
);