Writes a string to the internal print buffer, followed by a call to NewLine(1).
public void WriteLine(string str);
Parameter | Description |
---|---|
string str | A string to be written to the internal print buffer. |
The string is converted to ASCII character data before writing to the buffer. This method also flushes the data in the internal buffer because it calls the newLine method internally.