Method | Description | |
---|---|---|
ConsoleLog ( ) : System | ||
Write ( string message ) : void |
Writes output to the console. Intelligently wraps text to fit the console's remaining line buffer, aligning wrapped lines to the current cursor position.
|
|
WriteError ( string message ) : void |
Writes a line of red text to the console window.
|
|
WriteLine ( string message ) : void |
Writes a line of text to the console window.
|
|
WriteWarning ( string message ) : void |
Writes a line of yellow text to the console window.
|
public WriteError ( string message ) : void | ||
message | string | The message to write. |
return | void |
public WriteLine ( string message ) : void | ||
message | string | The message to write. |
return | void |
public WriteWarning ( string message ) : void | ||
message | string | The message to write. |
return | void |