CompareTo
This method compares the current OracleTimeStamp instance to an object, and returns an integer that represents their relative values.
                  
Declaration
// C#
public int CompareTo(object obj);Parameters
- 
                        objThe object being compared to the current OracleTimeStampinstance.
Return Value
The method returns a number that is:
Less than zero: if the current OracleTimeStamp instance value is less than that of obj.
                  
Zero: if the current OracleTimeStamp instance and obj values are equal.
                  
Greater than zero: if the current OracleTimeStamp instance value is greater than that of obj.
                  
Implements
IComparable 
                  
Exceptions
ArgumentException - The obj parameter is not of type OracleTimeStamp.
                  
Remarks
The following rules apply to the behavior of this method.
- 
                        The comparison must be between OracleTimeStamps. For example, comparing anOracleTimeStampinstance with anOracleBinaryinstance is not allowed. When anOracleTimeStampis compared with a different type, anArgumentExceptionis thrown.
- 
                        Any OracleTimeStampthat has a value is greater than anOracleTimeStampthat has a null value.
- 
                        Two OracleTimeStamps that contain a null value are equal.