StringBuilderExtensionsAppendFormatLine(StringBuilder, String, Object, Object, 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 either of three arguments.
Finally, appends the default line terminator to the end of the
StringBuilder object.
Namespace: DevCase.Extensions.StringBuilderExtensionsAssembly: 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,
Object arg1,
Object arg2
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function AppendFormatLine (
sender As StringBuilder,
format As String,
arg0 As Object,
arg1 As Object,
arg2 As Object
) As StringBuilder
Dim sender As StringBuilder
Dim format As String
Dim arg0 As Object
Dim arg1 As Object
Dim arg2 As Object
Dim returnValue As StringBuilder
returnValue = sender.AppendFormatLine(format,
arg0, arg1, arg2)
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static StringBuilder^ AppendFormatLine(
StringBuilder^ sender,
String^ format,
Object^ arg0,
Object^ arg1,
Object^ arg2
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member AppendFormatLine :
sender : StringBuilder *
format : string *
arg0 : Object *
arg1 : Object *
arg2 : Object -> StringBuilder
No code example is currently available or this language may not be supported.
- sender StringBuilder
-
The source character.
- format String
-
A composite format string.
- arg0 Object
-
The first object to format.
- arg1 Object
-
The second object to format.
- arg2 Object
-
The third object to format.
StringBuilder
A reference to this instance with format appended.
Each format item in format is replaced by the string representation of the corresponding object argument.
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).
This is a code example.
No code example is currently available or this language may not be supported.
Dim sb As New Global.System.Text.StringBuilder
sb.AppendFormatLine("{0} {1} {2}", "arg0", "arg1", "arg2")
MessageBox.Show(sb.ToString())
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.