'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.