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;
The result of converting this Decimal 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