C# Класс DbExpressions.StringBuilderExtensions

Extends the string class.
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

AppendFormat() публичный статический Метод

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.
Результат void

AppendLine() публичный статический Метод

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.
Результат void