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.
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
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function AppendFormatLine (
sender As StringBuilder,
format As String,
arg0 As Object
) As StringBuilder
Dim sender As StringBuilder
Dim format As String
Dim arg0 As Object
Dim returnValue As StringBuilder
returnValue = sender.AppendFormatLine(format,
arg0)
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static StringBuilder^ AppendFormatLine(
StringBuilder^ sender,
String^ format,
Object^ arg0
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member AppendFormatLine :
sender : StringBuilder *
format : string *
arg0 : 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
-
An object to format.
StringBuilder
A reference to this instance with format appended.
Each format item in format is replaced by the string representation of
arg0.
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}", "arg0")
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.