ConsolePlusWriteMessage Method |
Write a formatted message, with newline, to the system Console with the specified text color.
Note: Internally, Console.WriteLine(format, args) is called.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntaxpublic static void WriteMessage(
ConsoleColor color,
string format,
params Object[] args
)
Public Shared Sub WriteMessage (
color As ConsoleColor,
format As String,
ParamArray args As Object()
)
Parameters
- color
- Type: SystemConsoleColor
The text color to use. - format
- Type: SystemString
The message format string. - args
- Type: SystemObject
The format parameters.
See Also