Indent + StringBuilder.AppendFormat

Namespace: YiaoWang.Windows.Forms
Assembly: YiaoWang.Windows.Forms (YiaoWang.Windows.Forms.dll 内) バージョン: 2.11.5.7 (2.11.5.7)

Syntax

C#
public StringBuilder Add(
	string format,
	params Object[] args
)
Visual Basic
Public Function Add ( _
	format As String, _
	ParamArray args As Object() _
) As StringBuilder

Parameters

format
Type: System..::..String
複合書式指定文字列。
args
Type: array<System..::..Object>[]()[][]
書式指定するオブジェクトの配列。

Return Value

format が追加されたこのインスタンスへの参照。 format の書式指定は、対応するオブジェクト引数の文字列形式に置換されます。

Remarks

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionformat または args が null 参照 (Visual Basic では Nothing) です。
System..::..FormatExceptionformat が無効です。
System..::..ArgumentOutOfRangeExceptionこのインスタンスの値を増やすと、MaxCapacity を超えます。

See Also