TryParse Method
TryParse(string?, CultureInfo, out HBigDecimal)
Converts the string representation of a number to its HBig
Declaration
public static bool TryParse(string? s, CultureInfo cultureInfo, out HBigDecimal bigDecimal)
Parameters
string | s | A string containing a number to convert. |
Culture |
cultureInfo | An object that supplies culture-specific formatting information about |
HBig |
bigDecimal | When this method returns, contains the HBig |
Returns
bool |
|
TryParse(string, out HBigDecimal)
Converts the string representation of a number to its HBig
Declaration
public static bool TryParse(string s, out HBigDecimal bigDecimal)
Parameters
string | s | A string containing a number to convert. |
HBig |
bigDecimal | When this method returns, contains the HBig |
Returns
bool |
|