Appends a 64-bit unsigned integer to the end of the current StringBuilder.
[Visual Basic] Overloads Public Function Append( _ ByVal value As UInt64 _ ) As StringBuilder [C#] public StringBuilder Append( ulong value ); [C++] public: StringBuilder* Append( unsigned __int64 value ); [JScript] public function Append( value : UInt64 ) : StringBuilder;
A reference to the current StringBuilder with the string representation of value appended.
ToString is used to get a string representation of the integer. The capacity is adjusted as needed.
StringBuilder Class | StringBuilder Members | System.Text Namespace | StringBuilder.Append Overload List | UInt64