I'm currently reading the serial port via .BaseStream.Read(), but I noticed this in the documentation:
Because the SerialPort class buffers data, and the stream contained in the BaseStream property does not, the two might conflict about how many bytes are available to read. The BytesToRead property can indicate that there are bytes to read, but these bytes might not be accessible to the stream contained in the BaseStream property because they have been buffered to the SerialPort class.
While I don't use BytesToRead, the latter part of the above concerns me a bit, as the wording suggests that data can be "missed" when reading the BaseStream directly, i.e. it is no loner in the stream and is now in the SerialPort's buffer. So should I be using SerialPort.Read() instead?