NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

StringBuilder.Append (Char[])

Appends all of the characters in an array to the end of the current StringBuilder.

[Visual Basic]
Overloads Public Function Append( _
   ByVal value() As Char _
) As StringBuilder
[C#]
public StringBuilder Append(
   char[] value
);
[C++]
public: StringBuilder* Append(
   __wchar_t* value[]
);
[JScript]
public function Append(
   value : Char[]
) : StringBuilder;

Parameters

value
a character array to be appended.

Return Value

A reference to the current StringBuilder with all of the characters in value appended.

Remarks

The capacity is adjusted as needed.

See Also

StringBuilder Class | StringBuilder Members | System.Text Namespace | StringBuilder.Append Overload List