Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / DoubleTryParse Method
The string to read
The converted value, if the method succeeded, 0 otherwise

In This Topic
    DoubleTryParse Method
    In This Topic
    Converts the string representation of a number to its double-precision equivalent in a culture invariant way.
    Syntax
    'Declaration
     
    Public Shared Function DoubleTryParse( _
       ByVal value As String, _
       ByRef result As Double _
    ) As Boolean
    public static bool DoubleTryParse( 
       string value,
       out double result
    )

    Parameters

    value
    The string to read
    result
    The converted value, if the method succeeded, 0 otherwise

    Return Value

    True if the conversion succeeded, false otherwise.
    See Also