Property | Type | Description | |
---|---|---|---|
DefaultIndentPrefix | string | ||
DefaultNewLine | string | ||
IndentPrefix | string | ||
NewLine | string |
Method | Description | |
---|---|---|
Attribute ( string attributeConstructor ) : void | ||
Bracket ( ) : void |
Write leading bracket and indent
|
|
Bracket ( string str ) : void |
Write leading bracket and indent
|
|
Case ( int id ) : void | ||
Case ( string str ) : void | ||
CaseDefault ( ) : void | ||
CodeWriter ( ) : System |
Writes to memory, get the code using the "Code" property
|
|
CodeWriter ( string csPath ) : System |
Writes code directly to file
|
|
Comment ( string code ) : void | ||
Dedent ( ) : void | ||
Dispose ( ) : void | ||
ElseBracket ( ) : void |
Close a previous IfBracket and start an else
|
|
ElseIfBracket ( string str ) : void |
Close a previous Bracket and start an "else if"
|
|
EndBracket ( ) : void | ||
EndBracketSpace ( ) : void | ||
Flush ( ) : void | ||
ForeachBracket ( string str ) : void | ||
IfBracket ( string str ) : void | ||
Indent ( ) : void | ||
Summary ( string summary ) : void | ||
SummaryParam ( string name, string description ) : void |
|
|
Switch ( string str ) : void | ||
SwitchEnd ( ) : void | ||
Using ( string str ) : void | ||
WhileBracket ( string str ) : void | ||
WriteIndent ( string str ) : void |
Writes a singe line indented.
|
|
WriteLine ( ) : void | ||
WriteLine ( string line ) : void | ||
WritePragma ( string line ) : void |
Method | Description | |
---|---|---|
SplitTrimEnd ( string text ) : string[] |
Split string into an array of lines and trim whitespace at the end
|
public Attribute ( string attributeConstructor ) : void | ||
attributeConstructor | string | |
return | void |
public Bracket ( string str ) : void | ||
str | string | Line before bracket |
return | void |
public SummaryParam ( string name, string description ) : void | ||
name | string | |
description | string | |
return | void |