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