The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
.NET Framework 4.5
Compares the current instance with another object of the same type and returns an integer that indicates whether this instance precedes, follows, or occurs in the same position in the sort order as the other object.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.Object
An object to compare with this instance, or null.
Return Value
Type: System.Int32A signed number indicating the relative order of this instance and value.
Value | Description |
|---|---|
Less than zero | This instance precedes value in the sort order. |
Zero | This instance occurs in the same position as value in the sort order. |
Greater than zero | This instance follows value in the osrt order, or value is null. |
Implements
IComparable.CompareTo(Object)| Exception | Condition |
|---|---|
| ArgumentException | value is not a DateTime. |
This member is an explicit interface implementation. It can be used only when the DateTime instance is cast to an IComparable interface.