C# 클래스 CodeCake.CakeConsole

상속: IConsole
파일 보기 프로젝트 열기: SimpleGitVersion/CodeCake 1 사용 예제들

공개 메소드들

메소드 설명
ResetColor ( ) : void

Sets the foreground and background console colors to their defaults.

Write ( string format ) : void

Writes the text representation of the specified array of objects to the console output using the specified format information.

WriteError ( string format ) : void

Writes the text representation of the specified array of objects to the console error output using the specified format information.

WriteErrorLine ( string format ) : void

Writes the text representation of the specified array of objects, followed by the current line terminator, to the console error output using the specified format information.

WriteLine ( string format ) : void

Writes the text representation of the specified array of objects, followed by the current line terminator, to the console output using the specified format information.

메소드 상세

ResetColor() 공개 메소드

Sets the foreground and background console colors to their defaults.
public ResetColor ( ) : void
리턴 void

Write() 공개 메소드

Writes the text representation of the specified array of objects to the console output using the specified format information.
public Write ( string format ) : void
format string A composite format string
리턴 void

WriteError() 공개 메소드

Writes the text representation of the specified array of objects to the console error output using the specified format information.
public WriteError ( string format ) : void
format string A composite format string
리턴 void

WriteErrorLine() 공개 메소드

Writes the text representation of the specified array of objects, followed by the current line terminator, to the console error output using the specified format information.
public WriteErrorLine ( string format ) : void
format string A composite format string
리턴 void

WriteLine() 공개 메소드

Writes the text representation of the specified array of objects, followed by the current line terminator, to the console output using the specified format information.
public WriteLine ( string format ) : void
format string A composite format string
리턴 void