C# Class Interpreter.util.DebuggerWriter

Implements a TextWriter for writing information to the debugger log.
Inheritance: System.IO.TextWriter
ファイルを表示 Open project: dfdemar/Pascal_Interpreter

Public Methods

Method Description
DebuggerWriter ( ) : System

Initializes a new instance of the DebuggerWriter class.

DebuggerWriter ( int level, string category ) : System

Initializes a new instance of the DebuggerWriter class with the specified level and category.

DebuggerWriter ( int level, string category, IFormatProvider formatProvider ) : System

Initializes a new instance of the DebuggerWriter class with the specified level, category and format provider.

Write ( char value ) : void
Write ( char buffer, int index, int count ) : void
Write ( string value ) : void

Protected Methods

Method Description
DebuggerWriter ( IFormatProvider formatProvider ) : System
Dispose ( bool disposing ) : void

Method Details

DebuggerWriter() public method

Initializes a new instance of the DebuggerWriter class.
public DebuggerWriter ( ) : System
return System

DebuggerWriter() protected method

protected DebuggerWriter ( IFormatProvider formatProvider ) : System
formatProvider IFormatProvider
return System

DebuggerWriter() public method

Initializes a new instance of the DebuggerWriter class with the specified level and category.
public DebuggerWriter ( int level, string category ) : System
level int A description of the importance of the messages.
category string The category of the messages.
return System

DebuggerWriter() public method

Initializes a new instance of the DebuggerWriter class with the specified level, category and format provider.
public DebuggerWriter ( int level, string category, IFormatProvider formatProvider ) : System
level int A description of the importance of the messages.
category string The category of the messages.
formatProvider IFormatProvider An object that controls formatting.
return System

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

Write() public method

public Write ( char value ) : void
value char
return void

Write() public method

public Write ( char buffer, int index, int count ) : void
buffer char
index int
count int
return void

Write() public method

public Write ( string value ) : void
value string
return void