C# 클래스 Interpreter.util.DebuggerWriter

Implements a TextWriter for writing information to the debugger log.
상속: System.IO.TextWriter
파일 보기 프로젝트 열기: dfdemar/Pascal_Interpreter

공개 메소드들

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

보호된 메소드들

메소드 설명
DebuggerWriter ( IFormatProvider formatProvider ) : System
Dispose ( bool disposing ) : void

메소드 상세

DebuggerWriter() 공개 메소드

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

DebuggerWriter() 보호된 메소드

protected DebuggerWriter ( IFormatProvider formatProvider ) : System
formatProvider IFormatProvider
리턴 System

DebuggerWriter() 공개 메소드

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.
리턴 System

DebuggerWriter() 공개 메소드

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.
리턴 System

Dispose() 보호된 메소드

protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

Write() 공개 메소드

public Write ( char value ) : void
value char
리턴 void

Write() 공개 메소드

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

Write() 공개 메소드

public Write ( string value ) : void
value string
리턴 void