Click or drag to resize
StringBuilderAppend Method (Char)
Appends the string representation of the Unicode characters in a specified array to this instance.

Namespace: System.Text
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public StringBuilder Append(
	char[] value
)

Parameters

value
Type: SystemChar
The array of characters to append.

Return Value

Type: StringBuilder
A reference to this instance after the append operation has completed.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionEnlarging the value of this instance would exceed MaxCapacity.
See Also