LiquidTechnologies.XmlObjects Namespace / BigDecimal Structure / TryParse Method
a string representation of a decimal
if ture is returned the this holds a BigDecimal representing the decimal value in stringValue, if false is returned this is undefined.

In This Topic
    TryParse Method (BigDecimal)
    In This Topic
    Attempts to parse the string representation of a decimal into a BigDecimal object
    Syntax
    'Declaration
     
    
    Public Shared Function TryParse( _
       ByVal stringValue As System.String, _
       ByRef result As BigDecimal _
    ) As System.Boolean
    public static System.bool TryParse( 
       System.string stringValue,
       out BigDecimal result
    )

    Parameters

    stringValue
    a string representation of a decimal
    result
    if ture is returned the this holds a BigDecimal representing the decimal value in stringValue, if false is returned this is undefined.

    Return Value

    true if the decimal string was parsed successfully, false if it was not.
    Requirements

    Target Platforms: Windows 10, Windows 8, Windows 7, Windows Vista, Windows Server 2016, Windows Server 2012, Windows Server 2008. Please ensure you have the latest Service Pack for your operating system installed.

    See Also