Serial.WriteLn C# (CSharp) Метод

WriteLn() публичный статический Метод

Send data to the serial port and append a new line character (\n)
public static WriteLn ( string message = "" ) : void
message string
Результат void
    public static void WriteLn(string message = "")
    {
        s_serial.Write (message + "\n");
    }