Microsoft.Networking.SerialPort.Write C# (CSharp) Method

Write() public method

public Write ( byte buffer, int count ) : void
buffer byte
count int
return void
        public void Write(byte[] buffer, int count)
        {
            port.Write(buffer, 0, count);
        }

Same methods

SerialPort::Write ( string msg ) : void