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

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

Writes the specified string value to the standard output stream. Optionally you may specify which colors should be used.
public static Write ( 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 Write(string message, ConsoleColor? foregroundColor = null,
            ConsoleColor? backgroundColor = null)
        {
            WriteToConsole(message, foregroundColor, backgroundColor, false);
        }