StringBuilderExtensionsAppendLineFormat Method (StringBuilder, String, 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,
params Object[] args
)
Parameters
- input
- Type: System.TextStringBuilder
The string builder to append to. - format
- Type: SystemString
The string with the format placeholders. - args
- Type: SystemObject
The 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