Click or drag to resize
StringBuilderExtensionsAppendLineFormat Method (StringBuilder, String, Object, Object, Object)
Appends the args and a new line character

Namespace: Entelect.Extensions
Assembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntax
C#
public static StringBuilder AppendLineFormat(
	this StringBuilder input,
	string format,
	Object arg0,
	Object arg1,
	Object arg2
)

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.
arg2
Type: SystemObject
The third parameter to use within the formatted string.

Return Value

Type: StringBuilder
The 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