Windows apps
Collapse the table of content
Expand the table of content
Information
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.

TimeSpan::Compare Method (TimeSpan, TimeSpan)

 

Compares two TimeSpan values and returns an integer that indicates whether the first value is shorter than, equal to, or longer than the second value.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

public:
static int Compare(
	TimeSpan t1,
	TimeSpan t2
)

Parameters

t1
Type: System::TimeSpan

The first time interval to compare.

t2
Type: System::TimeSpan

The second time interval to compare.

Return Value

Type: System::Int32

One of the following values.

Value

Description

-1

t1 is shorter than t2.

0

t1 is equal to t2.

1

t1 is longer than t2.

The following example uses the Compare method to compare several TimeSpan objects with a TimeSpan object whose value is a 2-hour time interval.

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft