StringBuilderExtensionsAppendLineFormat Method (StringBuilder, String, Object) |
Appends the args and a new line character, basically a shorthand form of input.AppendFormat(...).AppendLine()
Namespace: Entelect.ExtensionsAssembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntaxpublic static StringBuilder AppendLineFormat(
this StringBuilder input,
string format,
Object arg0
)
Parameters
- input
- Type: System.TextStringBuilder
The string builder to append to. - format
- Type: SystemString
The string with the format placeholders. - arg0
- 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).
Examples
This sample shows how to use the method.
var stringBuilder = new StringBuilder();
stringBuilder.AppendLineFormat("Hello {0}", "World");
return stringBuilder.ToString();
format is null.
format is invalid. -or-The index of a format item is less than 0 (zero), or greater than or equal to 1.The length of the expanded string would exceed
MaxCapacity.
See Also