operator !=
This method determines if the first of two OracleDecimal values are not equal.
Declaration
// C# public static bool operator != (OracleDecimal val1, OracleDecimal val2);
Parameters
-
val1The first
OracleDecimal. -
val2The second
OracleDecimal.
Return Value
Returns true if the two OracleDecimal values are not equal; otherwise, returns false.
Remarks
The following rules apply to the behavior of this method.
-
Any
OracleDecimalthat has a value compares greater than anOracleDecimalthat has a null value. -
Two
OracleDecimals that contain a null value are equal.