C# 클래스 Akka.Util.StandardOutWriter

This class contains methods for thread safe writing to the standard output stream.
파일 보기 프로젝트 열기: rogeralsing/akka.net

공개 메소드들

메소드 설명
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