Spread Windows Forms 17
FarPoint.CalcEngine Assembly / FarPoint.CalcEngine Namespace / CalcConvert Class / TryToDouble Method
Value to convert


In This Topic
    TryToDouble Method
    In This Topic
    Converts the specified value to a double-precision, floating-point number.
    Syntax
    'Declaration
     
    
    Public Shared Function TryToDouble( _
       ByVal value As Object, _
       ByRef number As Double _
    ) As Boolean
    'Usage
     
    
    Dim value As Object
    Dim number As Double
    Dim value As Boolean
     
    value = CalcConvert.TryToDouble(value, number)
    public static bool TryToDouble( 
       object value,
       out double number
    )

    Parameters

    value
    Value to convert
    number

    Return Value

    Double-precision, floating-point number equivalent to the specified value
    Exceptions
    ExceptionDescription
    Value cannot be converted.
    See Also