C# Class 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.
Inheritance: System.IO.TextWriter
Exibir arquivo Open project: nunit/nunit

Public Methods

Method Description
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.

Method Details

Write() public method

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.
return void

Write() public method

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.
return void

WriteLine() public method

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.
return void