StringBuilderExtensionsAppendFormatLine(StringBuilder, String, Object) Method

Appends the string returned by processing a composite format string, which contains zero or more format items, to this instance.

Each format item is replaced by the string representation of a single argument.

Finally, appends the default line terminator to the end of the StringBuilder object.

Definition

Namespace: DevCase.Extensions.StringBuilderExtensions
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static StringBuilder AppendFormatLine(
	this StringBuilder sender,
	string format,
	Object arg0
)

Parameters

sender  StringBuilder
The source character.
format  String
A composite format string.
arg0  Object
An object to format.

Return Value

StringBuilder
A reference to this instance with format appended.

Each format item in format is replaced by the string representation of arg0.

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).

Example

This is a code example.
C#
No code example is currently available or this language may not be supported.

See Also