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 (String)

Appends a copy of a string to the end of the current StringBuilder.

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

Parameters

value
the String to be appended.

Return Value

A reference to the current StringBuilder with value appended.

Remarks

The capacity is adjusted as needed.

See Also

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