14.7.8.3 Equals
This method determines whether or not supplied object is an instance of OracleString and has the same values as the current OracleString instance.
                  
Declaration
// C#
public override bool Equals(object obj);Parameters
- 
                        
objAn object being compared.
 
Return Value
Returns true if the supplied object is an instance of OracleString and has the same values as the current OracleString instance; otherwise, returns false.
                  
Remarks
The following rules apply to the behavior of this method.
- 
                        
Any
OracleStringthat has a value is greater than anOracleStringthat has a null value. - 
                        
Two
OracleStrings that contain a null value are equal.