Serial.WriteLn C# (CSharp) Method

WriteLn() public static method

Send data to the serial port and append a new line character (\n)
public static WriteLn ( string message = "" ) : void
message string
return void
    public static void WriteLn(string message = "")
    {
        s_serial.Write (message + "\n");
    }