| StringBuilderExtensionsAppend Method |
Appends a copy of a string builder to the end of the string builder.
Namespace: DigitalRune.TextAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public static void Append(
this StringBuilder builder,
StringBuilder text
)
<ExtensionAttribute>
Public Shared Sub Append (
builder As StringBuilder,
text As StringBuilder
)
public:
[ExtensionAttribute]
static void Append(
StringBuilder^ builder,
StringBuilder^ text
)
[<ExtensionAttribute>]
static member Append :
builder : StringBuilder *
text : StringBuilder -> unit
Parameters
- builder
- Type: System.TextStringBuilder
The string builder. - text
- Type: System.TextStringBuilder
The text that is appended to the end of builder.
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).
Exceptions See Also