Microsoft.Networking.SerialPort.Write C# (CSharp) Méthode

Write() public méthode

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

Same methods

SerialPort::Write ( string msg ) : void