2 writes to singleCharBuffer
System (2)
sys\system\io\ports\SerialPort.cs (2)
314singleCharBuffer = null; 1251singleCharBuffer = new char[maxByteCountForSingleChar];
5 references to singleCharBuffer
System (5)
sys\system\io\ports\SerialPort.cs (5)
1249if (singleCharBuffer == null) { 1258numCharsRead = InternalRead(singleCharBuffer, 0, 1, readTimeout, true); 1262numCharsRead = InternalRead(singleCharBuffer, 0, 1, readTimeout - timeUsed, true); 1275currentLine.Append(singleCharBuffer, 0, numCharsRead); 1277if (lastValueChar == (char) singleCharBuffer[numCharsRead-1] && (currentLine.Length >= value.Length)) {