[This is preliminary documentation and is subject to change.]
Appends the string followed by new line and 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.
Namespace: NFXAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public static StringBuilder AppendFormatLine(
this StringBuilder builder,
string str,
Object arg0,
Object arg1
)
public static StringBuilder AppendFormatLine(
this StringBuilder builder,
string str,
Object arg0,
Object arg1
)
<ExtensionAttribute>
Public Shared Function AppendFormatLine (
builder As StringBuilder,
str As String,
arg0 As Object,
arg1 As Object
) As StringBuilder
<ExtensionAttribute>
Public Shared Function AppendFormatLine (
builder As StringBuilder,
str As String,
arg0 As Object,
arg1 As Object
) As StringBuilder
public:
[ExtensionAttribute]
static StringBuilder^ AppendFormatLine(
StringBuilder^ builder,
String^ str,
Object^ arg0,
Object^ arg1
)
public:
[ExtensionAttribute]
static StringBuilder^ AppendFormatLine(
StringBuilder^ builder,
String^ str,
Object^ arg0,
Object^ arg1
)
static member AppendFormatLine :
builder : StringBuilder *
str : string *
arg0 : Object *
arg1 : Object -> StringBuilder
static member AppendFormatLine :
builder : StringBuilder *
str : string *
arg0 : Object *
arg1 : Object -> StringBuilder
Return Value
Type:
StringBuilderUsage 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).