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!

Decimal.ToString ()

Converts this instance of Decimal 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 result of converting this Decimal to a String.

Remarks

ToString() provides a string representation for the value of this instance.

No leading zero characters ('0') are prefixed to the returned string and only the following characters are used: 0, 1, 2, 3, 4, 5, 6, 7, 8, and/or 9.

The resulting string consists of an optional minus sign ("-") followed by a sequence of digits ("0"- "9"), optionally followed by a decimal point (".") and another sequence of digits.

See Also

Decimal Structure | Decimal Members | System Namespace | Decimal.ToString Overload List