TerminalScreen.Write Method
Namespace: Rebex.TerminalEmulation
Assembly: Rebex.Terminal.dll (version 7.0.9083)
Write(String)
Writes the specified string to the console.
Declaration
public void Write(string value)
Parameters
Type | Name | Description |
---|---|---|
String | value | String value. |
Remarks
The string may contain ANSI control sequences.
Write(String, Object[])
Writes the text represented by the specified array of objects to the console.
Declaration
public void Write(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.
Write(Object)
Writes the text represented by the specified object to the console.
Declaration
public void Write(object value)
Parameters
Type | Name | Description |
---|---|---|
Object | value |
Remarks
The text representation of the object may contain ANSI control sequences.