C# Class Organic.TabifiedStringBuilder

Used to build strings with different portions always appearing at the same index
显示文件 Open project: SirCmpwn/organic Class Usage Examples

Public Methods

Method Description
TabifiedStringBuilder ( ) : System

Creates a TabifiedStringBuilder with an empty string

WriteAt ( int position, string content ) : void

Writes the value at the given index, and pads it with spaces.

Method Details

TabifiedStringBuilder() public method

Creates a TabifiedStringBuilder with an empty string
public TabifiedStringBuilder ( ) : System
return System

WriteAt() public method

Writes the value at the given index, and pads it with spaces.
public WriteAt ( int position, string content ) : void
position int
content string
return void