[This is preliminary documentation and is subject to change.]

Compares this instance to a specified TimeSpanFormattable object and returns an indication of their relative values.

Namespace: Tools
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public int CompareTo(
	TimeSpanFormattable other
)
Visual Basic
Public Function CompareTo ( _
	other As TimeSpanFormattable _
) As Integer
Visual C++
public:
virtual int CompareTo(
	TimeSpanFormattable other
) sealed
F#
abstract CompareTo : 
        other:TimeSpanFormattable -> int 
override CompareTo : 
        other:TimeSpanFormattable -> int 
JScript
public final function CompareTo(
	other : TimeSpanFormattable
) : int

Parameters

other
Type: Tools..::..TimeSpanFormattable
A TimeSpanFormattable object to compare to this instance.

Return Value

A signed number indicating the relative values of this instance and other. Value Description: A negative integer This instance is less than other. Zero This instance is equal to other. A positive integer This instance is greater than other.

Implements

IComparable<(Of <(<'T>)>)>..::..CompareTo(T)

See Also