Description:

Converts the string representation of a number to its double-precision floating-point number equivalent. A return value indicates whether the conversion succeeded or failed. system culture.

Syntax:
public static bool TryParseDouble(
string s,
out double value
)
Parameters:
  • s
  • Type: string
  • A string containing a number to convert.
  • value
  • Type: double
  • When this method returns, contains the double-precision floating-point number equivalent of the s parameter, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the s parameter is None or Empty, is not a number in a valid format, or represents a number less than MinValue or greater than MaxValue. This parameter is passed uninitialized; any value originally supplied in result will be overwritten.
Returns:
Type: bool
Returns True if s was converted successfully; otherwise, false..
Available since:
6.10

TryParseDouble method

Class:  Rhino.PersistentSettingsConverter

Nothing found