14.4.2.1 OracleDecimal(byte [ ])
This constructor creates a new instance of the OracleDecimal structure and sets its value to the supplied byte array, which is in an Oracle NUMBER format.
                  
Declaration
// C# public OracleDecimal(byte [] bytes);
Parameters
- 
                        bytesA byte array that represents an Oracle NUMBERin an internal Oracle format.
Exceptions
ArgumentException - The bytes parameter is not in a internal Oracle NUMBER format or bytes has an invalid value.
                  
ArgumentNullException - The bytes parameter is null.