Parse
This method converts a string
to an OracleDecimal
.
Declaration
// C#
public static OracleDecimal Parse (string str);
Parameters
-
str
The string being converted.
Return Value
A new OracleDecimal
structure.
Exceptions
ArgumentException
- The numStr
parameter is an invalid string representation of an OracleDecimal
.
ArgumentNullException
- The numStr
parameter is null.
OverFlowException
- The value of numStr
is greater than the maximum value or less than the minimum value of OracleDecimal
.