Compare Method
Collapse the table of content
Expand the table of content

Duration.Compare Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Compares one Duration value to another.

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

public static int Compare(
	Duration t1,
	Duration t2
)

Parameters

t1
Type: System.Windows.Duration
The first instance of Duration to compare.
t2
Type: System.Windows.Duration
The second instance of Duration to compare.

Return Value

Type: System.Int32
If t1 is less than t2, a negative value that represents the difference. If t1 is equal to t2, a value of 0. If t1 is greater than t2, a positive value that represents the difference.

A Duration instance with a value of Automatic is a special case with the following return values.

  • If t1 is Automatic and t2 is not, -1 is returned.

  • If t1 is Automatic and t2 is also Automatic, 0 is returned.

  • If t1 is not Automatic and t2 is Automatic, 1 is returned.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft