C# Класс Akka.Util.StandardOutWriter

This class contains methods for thread safe writing to the standard output stream.
Показать файл Открыть проект

Открытые методы

Метод Описание
Write ( string message, ConsoleColor foregroundColor = null, ConsoleColor backgroundColor = null ) : void

Writes the specified string value to the standard output stream. Optionally you may specify which colors should be used.

WriteLine ( string message, ConsoleColor foregroundColor = null, ConsoleColor backgroundColor = null ) : void

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.

Приватные методы

Метод Описание
WriteToConsole ( string message, ConsoleColor foregroundColor = null, ConsoleColor backgroundColor = null, bool line = true ) : void

Описание методов

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

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