StringBuilderExtensionsAppendLineFormat Method (StringBuilder, String, Object, Object) |
Appends the args and a new line character
Namespace: Entelect.ExtensionsAssembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntaxpublic static StringBuilder AppendLineFormat(
this StringBuilder input,
string format,
Object arg0,
Object arg1
)
Parameters
- input
- Type: System.TextStringBuilder
The string builder to append to. - format
- Type: SystemString
The string with the format placeholders. - arg0
- Type: SystemObject
The first parameter to use within the formatted string. - arg1
- Type: SystemObject
The second parameter to use within the formatted string.
Return Value
Type:
StringBuilderThe StringBuilder with the appended information
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
StringBuilder. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also