Equals
This method determines if two OracleDecimal
values are equal.
Declaration
// C# public static bool Equals(OracleDecimal value1, OracleDecimal value2);
Parameters
-
value1
The first
OracleDecimal
. -
value2
The second
OracleDecimal
.
Return Value
Returns true
if two OracleDecimal
values are equal; otherwise, returns false
.
Remarks
The following rules apply to the behavior of this method.
-
Any
OracleDecimal
that has a value compares greater than anOracleDecimal
that has a null value. -
Two
OracleDecimal
s that contain a null value are equal.