CyrusBuilt.MonoPi.IO.Serial.Rs232SerialPort.PutChar C# (CSharp) Method

PutChar() public method

Sends a single character to the port.
/// This instance has been disposed and is no longer usable. /// /// The port is closed. ///
public PutChar ( Char c ) : void
c Char /// The character to send to the port. ///
return void
		public void PutChar(Char c) {
			this.Write(Convert.ToByte(c));
		}