14.2.8.2 Equals
Overrides Object
This method determines whether or not an object is an instance of OracleBoolean, and whether or not the value of the object is equal to the current instance.
Declaration
// C#
public override bool Equals(object obj);
Parameter
-
obj
An
OracleBooleaninstance.
Return Value
Returns true if obj is an instance of OracleBoolean, and the value of obj is equal to the current instance; otherwise, returns false.
Remarks
The following rules apply to the behavior of this method.
-
Any
OracleBooleanthat has a value compares greater than anOracleBooleanthat has a null value. -
Two
OracleBooleansthat contain a null value are equal.