C# 클래스 NUnitLite.DebugWriter

DebugWriter is a TextWriter that sends it's output to Debug. We don't use Trace because writing to it is not supported in CF.
상속: System.IO.TextWriter
파일 보기 프로젝트 열기: nunit/nunit

공개 메소드들

메소드 설명
Write ( char value ) : void

Writes a character to the text stream.

Write ( string value ) : void

Writes a string to the text stream.

WriteLine ( string value ) : void

Writes a string followed by a line terminator to the text stream.

메소드 상세

Write() 공개 메소드

Writes a character to the text stream.
/// The is closed. /// /// An I/O error occurs. ///
public Write ( char value ) : void
value char The character to write to the text stream.
리턴 void

Write() 공개 메소드

Writes a string to the text stream.
/// The is closed. /// /// An I/O error occurs. ///
public Write ( string value ) : void
value string The string to write.
리턴 void

WriteLine() 공개 메소드

Writes a string followed by a line terminator to the text stream.
/// The is closed. /// /// An I/O error occurs. ///
public WriteLine ( string value ) : void
value string The string to write. If is null, only the line termination characters are written.
리턴 void