TerminalScreen.WriteLine Method
Namespace: Rebex.TerminalEmulation
Assembly: Rebex.Terminal.dll (version 7.0.9083)
WriteLine(String)
Writes the specified string to the console, followed by a newline character.
Declaration
public void WriteLine(string value)
Parameters
Type | Name | Description |
---|---|---|
String | value | String value. |
Remarks
The string may contain ANSI control sequences.
WriteLine(String, Object[])
Writes the text represented by the specified array of objects to the console, followed by a newline character.
Declaration
public void WriteLine(string format, params object[] args)
Parameters
Type | Name | Description |
---|---|---|
String | format | The format string. |
Object[] | args | Object to write using format. |
Remarks
The text representation of the object array may contain ANSI control sequences.
WriteLine(Object)
Writes the text represented by the specified object to the console, followed by a newline character.
Declaration
public void WriteLine(object value)
Parameters
Type | Name | Description |
---|---|---|
Object | value |
Remarks
The text representation of the object may contain ANSI control sequences.
WriteLine()
Writes a newline character to the console.
Declaration
public void WriteLine()