Akka.Util.StandardOutWriter.WriteLine C# (CSharp) Метод

WriteLine() публичный статический Метод

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.
public static WriteLine ( string message, ConsoleColor foregroundColor = null, ConsoleColor backgroundColor = null ) : void
message string The value to write
foregroundColor ConsoleColor Optional: The foreground color
backgroundColor ConsoleColor Optional: The background color
Результат void
        public static void WriteLine(string message, ConsoleColor? foregroundColor = null,
            ConsoleColor? backgroundColor = null)
        {
            WriteToConsole(message, foregroundColor, backgroundColor);
        }