| StandardOutWriterWriteLine Method |
Writes the specified
String value, followed by the current line terminator,
to the standard output stream. Optionally you may specify which colors should be used.
Namespace:
Akka.Util
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public static void WriteLine(
string message,
Nullable<ConsoleColor> foregroundColor = null,
Nullable<ConsoleColor> backgroundColor = null
)
static member WriteLine :
message : string *
?foregroundColor : Nullable<ConsoleColor> *
?backgroundColor : Nullable<ConsoleColor>
(* Defaults:
let _foregroundColor = defaultArg foregroundColor null
let _backgroundColor = defaultArg backgroundColor null
*)
-> unit
Parameters
- message
- Type: SystemString
The String value to write - foregroundColor (Optional)
- Type: SystemNullableConsoleColor
Optional: The foreground color - backgroundColor (Optional)
- Type: SystemNullableConsoleColor
Optional: The background color
See Also