Click or drag to resize
DigitalRuneStringBuilderExtensionsAppend Method
Appends a copy of a string builder to the end of the string builder.

Namespace: DigitalRune.Text
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax
public static void Append(
	this StringBuilder builder,
	StringBuilder text
)

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
ExceptionCondition
ArgumentNullExceptionbuilder or text is .
See Also