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

Appends a 64-bit signed integer to the end of the current StringBuilder.

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

Parameters

value
the integer to be appended.

Return Value

A reference to the current StringBuilder with the string representation of value appended.

Remarks

ToString is used to get a string representation of the integer. The capacity is adjusted as needed.

See Also

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