|  | 
| static double | Parse (const String &value) | 
|  | Converts the specified string containing the string representation of a number to the equivalent double-precision floating-point value.  More... 
 | 
|  | 
| static double | Parse (const String &value, const SharedPtr< IFormatProvider > &provider) | 
|  | Converts the specified string containing the string representation of a number to the equivalent double-precision floating-point value using the provided formatting information.  More... 
 | 
|  | 
| static double | Parse (const String &value, const SharedPtr< Globalization::CultureInfo > &culture) | 
|  | 
| static double | Parse (const String &value, const SharedPtr< Globalization::NumberFormatInfo > &nfi) | 
|  | 
| static double | Parse (const String &value, std::nullptr_t) | 
|  | 
| static double | Parse (const String &value, Globalization::NumberStyles styles, const SharedPtr< IFormatProvider > &provider) | 
|  | Converts the specified string containing the string representation of a number to the equivalent double-precision floating-point value using the provided formatting information and number style.  More... 
 | 
|  | 
| static double | Parse (const String &value, Globalization::NumberStyles styles, const SharedPtr< Globalization::CultureInfo > &culture) | 
|  | 
| static double | Parse (const String &value, Globalization::NumberStyles styles, const SharedPtr< Globalization::NumberFormatInfo > &nfi) | 
|  | 
| static double | Parse (const String &value, Globalization::NumberStyles styles, std::nullptr_t=nullptr) | 
|  | 
| static bool | TryParse (const String &value, double &result) | 
|  | Converts the specified string containing the string representation of a number to the equivalent double-precision floating-point value.  More... 
 | 
|  | 
| static bool | TryParse (const String &value, Globalization::NumberStyles styles, const SharedPtr< IFormatProvider > &provider, double &result) | 
|  | Converts the specified string containing the string representation of a number to the equivalent double-precision floating-point value using the provided formatting information and number style.  More... 
 | 
|  | 
| static bool | TryParse (const String &value, Globalization::NumberStyles styles, const SharedPtr< Globalization::CultureInfo > &culture, double &result) | 
|  | 
| static bool | TryParse (const String &value, Globalization::NumberStyles styles, const SharedPtr< Globalization::NumberFormatInfo > &nfi, double &result) | 
|  | 
| static bool | TryParse (const String &value, Globalization::NumberStyles styles, std::nullptr_t, double &result) | 
|  | 
|  | 
| static constexpr double | MinValue = std::numeric_limits<double>::lowest() | 
|  | Smallest possible value.  More... 
 | 
|  | 
| static constexpr double | MaxValue = (std::numeric_limits<double>::max)() | 
|  | Largest possible value.  More... 
 | 
|  | 
| static constexpr double | Epsilon = std::numeric_limits<double>::epsilon() | 
|  | Smallest positive value that is greater than zero.  More... 
 | 
|  | 
| static constexpr double | NaN = std::numeric_limits<double>::quiet_NaN() | 
|  | Value that is not a number.  More... 
 | 
|  | 
| static constexpr double | NegativeInfinity = -std::numeric_limits<double>::infinity() | 
|  | Negative infinity.  More... 
 | 
|  | 
| static constexpr double | PositiveInfinity = std::numeric_limits<double>::infinity() | 
|  | Positive infinity.  More... 
 | 
|  | 
Contains methods to work with the double-precision floating-point number.