2 writes to _unprocessedBufferToBeRead
System.Console (2)
System\IO\StdInReader.cs (2)
40
_unprocessedBufferToBeRead
= new char[encoding.GetMaxCharCount(BytesToBeRead)];
79
Array.Resize(ref
_unprocessedBufferToBeRead
, _unprocessedBufferToBeRead.Length * 2);
4 references to _unprocessedBufferToBeRead
System.Console (4)
System\IO\StdInReader.cs (4)
76
int spaceRemaining =
_unprocessedBufferToBeRead
.Length - _endIndex;
79
Array.Resize(ref _unprocessedBufferToBeRead,
_unprocessedBufferToBeRead
.Length * 2);
84
chars.CopyTo(
_unprocessedBufferToBeRead
.AsSpan(_endIndex));
368
return KeyParser.Parse(
_unprocessedBufferToBeRead
, ConsolePal.TerminalFormatStringsInstance, ConsolePal.s_posixDisableValue, ConsolePal.s_veraseCharacter, ref _startIndex, _endIndex);