TimeSpan.IComparable.CompareTo(Object) Method

Definition

Compares this instance to a specified object and returns an integer that indicates whether this instance is shorter than, equal to, or longer than the specified object.

 virtual int System.IComparable.CompareTo(System::Object ^ value) = IComparable::CompareTo;
int IComparable.CompareTo (object value);
abstract member System.IComparable.CompareTo : obj -> int
override this.System.IComparable.CompareTo : obj -> int
Function CompareTo (value As Object) As Integer Implements IComparable.CompareTo

Parameters

value
Object

An object to compare, or null.

Returns

One of the following values:

ValueDescription
-1This instance is shorter than value.
0This instance is equal to value.
1This instance is longer than value, or value is null.

Implements

Remarks

This member is an explicit interface member implementation. It can be used only when the TimeSpan instance is cast to an IComparable interface.

Applies to