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;
The result's of converting the argument to a String.
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.
Decimal Structure | Decimal Members | System Namespace | Decimal.ToString Overload List