C# Class DbExpressions.StringBuilderExtensions

Extends the string class.
Afficher le fichier Open project: seesharper/DbExpressions

Méthodes publiques

Méthode 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 méthode

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.
Résultat void

AppendLine() public static méthode

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.
Résultat void