Indent + StringBuilder.AppendFormat
Namespace: YiaoWang.Windows.FormsAssembly: YiaoWang.Windows.Forms (YiaoWang.Windows.Forms.dll 内) バージョン: 2.11.5.7 (2.11.5.7)
Syntax
C# |
---|
public StringBuilder Add(
string format,
Object arg0
) |
Visual Basic |
---|
Public Function Add ( _
format As String, _
arg0 As Object _
) As StringBuilder |
Parameters
- format
- Type: System..::..String
複合書式指定文字列。
- arg0
- Type: System..::..Object
書式指定するオブジェクト。
Return Value
追加操作が完了した後のこのインスタンスへの参照。
Remarks
Exceptions
Exception | Condition |
---|
System..::..ArgumentNullException | format または args が null 参照 (Visual Basic では Nothing) です。 |
System..::..FormatException | format が無効です。 |
System..::..ArgumentOutOfRangeException | このインスタンスの値を増やすと、MaxCapacity を超えます。 |
See Also