C# 클래스 CsDebugScript.CodeGen.IndentedWriter

Helper class that provides indented writing to the text writer.
파일 보기 프로젝트 열기: southpolenator/WinDbgCs

공개 메소드들

메소드 설명
IndentedWriter ( TextWriter output, bool compressed ) : System.IO

Initializes a new instance of the IndentedWriter class.

IndentedWriter ( TextWriter output, int indentSpaces = 4 ) : System.IO

Initializes a new instance of the IndentedWriter class.

WriteLine ( ) : void

Writes the empty line to the output.

WriteLine ( int indentation, string format ) : void

Writes the formatted line to the output.

메소드 상세

IndentedWriter() 공개 메소드

Initializes a new instance of the IndentedWriter class.
public IndentedWriter ( TextWriter output, bool compressed ) : System.IO
output System.IO.TextWriter The output text writer.
compressed bool if set to true output should be compressed.
리턴 System.IO

IndentedWriter() 공개 메소드

Initializes a new instance of the IndentedWriter class.
public IndentedWriter ( TextWriter output, int indentSpaces = 4 ) : System.IO
output System.IO.TextWriter The output text writer.
indentSpaces int The number of space characters in one indent unit.
리턴 System.IO

WriteLine() 공개 메소드

Writes the empty line to the output.
public WriteLine ( ) : void
리턴 void

WriteLine() 공개 메소드

Writes the formatted line to the output.
public WriteLine ( int indentation, string format ) : void
indentation int The indentation.
format string The format.
리턴 void