Double.ToString Method (String)
Assembly: mscorlib (in mscorlib.dll)
The return value can be PositiveInfinitySymbol, NegativeInfinitySymbol, NaNSymbol, or a string of the form:
[sign]integral-digits[.[fractional-digits]][e[sign]exponential-digits]
Optional items are framed in square brackets ([ and ]). Items containing the term "digits" consist of a series of numeric characters ranging from 0 to 9.
signA negative sign or positive sign symbol.
integral-digitsA series of digits specifying the integral part of the number. Integral-digits can be absent if there are fractional-digits.
'.'A culture-specific decimal point symbol.
fractional-digitsA series of digits specifying the fractional part of the number.
'e'A lowercase character 'e', indicating exponential (scientific) notation.
exponential-digitsA series of digits specifying an exponent.
Some examples of the return value are "100", "-123,456,789", "123.45e+6", "500", "3.1416", "600", "-0.123", and "-Infinity".
If format is a null reference (Nothing in Visual Basic) or an empty string, the return value is formatted with the general format specifier ("G").
By default, the return value only contains 15 digits of precision although a maximum of 17 digits is maintained internally. If the value of this instance has greater than 15 digits, ToString returns PositiveInfinitySymbol or NegativeInfinitySymbol instead of the expected number. If you require more precision, specify format with the "G17" format specification, which always returns 17 digits of precision, or "R", which returns 15 digits if the number can be represented with that precision or 17 digits if the number can only be represented with maximum precision.
The return value is formatted with NumberFormatInfo data for the current culture.
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
Double StructureDouble Members
System Namespace
Parse
String
Other Resources
Formatting OverviewNumeric Format Strings