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!

Int64.ToString ()

Converts this instance of Int64 to a String.

[Visual Basic]
Overloads Overrides Public Function ToString() As String
[C#]
public override string ToString();
[C++]
public: override String* ToString();
[JScript]
public override function ToString() : String;

Return Value

The string representation of this instance.

Remarks

The ToString method is a base-10 representation of the number with no extra padding. If this instance is negative, the first character in the string returned will be '-'. No sign character is returned if the number is non-negative. The rest of the returned string is made up of characters representing the magnitude of this instance.

Leading zero characters ('0') are not prepended to the returned string.

The following characters are used as digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9.

The output from ToString should be consumable by FromString.

See Also

Int64 Structure | Int64 Members | System Namespace | Int64.ToString Overload List | String | Format | NumberFormatInfo