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