C# 클래스 DbExpressions.StringBuilderExtensions

Extends the string class.
파일 보기 프로젝트 열기: seesharper/DbExpressions

공개 메소드들

메소드 설명
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