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

Converts a specified Decimal to a String

[Visual Basic]
Overloads Public Shared Function ToString( _
   ByVal d As Decimal _
) As String
[C#]
public static string ToString(
   Decimal d
);
[C++]
public: static String* ToString(
   Decimal d
);
[JScript]
public static function ToString(
   d : Decimal
) : String;

Parameters

d
The Decimal value to convert.

Return Value

The result's of converting the argument 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