Convert::ToString Method (Double)
.NET Framework 4.5
Converts the value of the specified double-precision floating-point number to its equivalent string representation.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System::Double
The double-precision floating-point number to convert.
This implementation is identical to Double::ToString().
The following example converts a Double to a String.
public: void ConvertDoubleString( double doubleVal ) { String^ stringVal; // A conversion from Double to String cannot overflow. stringVal = System::Convert::ToString( doubleVal ); System::Console::WriteLine( " {0} as a String is: {1}", doubleVal, stringVal ); try { doubleVal = System::Convert::ToDouble( stringVal ); System::Console::WriteLine( " {0} as a double is: {1}", stringVal, doubleVal ); } catch ( System::OverflowException^ ) { System::Console::WriteLine( "Conversion from String-to-double overflowed." ); } catch ( System::FormatException^ ) { System::Console::WriteLine( "The String was not formatted as a double." ); } catch ( System::ArgumentException^ ) { System::Console::WriteLine( "The String pointed to null." ); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.