C# Class DbExpressions.StringBuilderExtensions

Extends the string class.
Show file Open project: seesharper/DbExpressions

Public Methods

Method Description
AppendFormat ( this stringBuilder, int indentLevel, string format ) : void

Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of a corresponding object argument.

AppendLine ( this stringBuilder, int indentLevel, string format ) : void

Appends the default line terminator, or a copy of a specified string and the default line terminator, to the end of this instance.

Method Details

AppendFormat() public static method

Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance. Each format item is replaced by the string representation of a corresponding object argument.
public static AppendFormat ( this stringBuilder, int indentLevel, string format ) : void
stringBuilder this The target instance.
indentLevel int The indent level to use
format string A composite format string.
return void

AppendLine() public static method

Appends the default line terminator, or a copy of a specified string and the default line terminator, to the end of this instance.
public static AppendLine ( this stringBuilder, int indentLevel, string format ) : void
stringBuilder this The target instance.
indentLevel int The indent level to use
format string A composite format string.
return void