C# TimeSpan GreaterThan
Description
TimeSpan GreaterThan
indicates whether a specified
TimeSpan is greater than another specified TimeSpan.
Syntax
TimeSpan.GreaterThan
has the following syntax.
public static bool operator >(
TimeSpan t1,
TimeSpan t2
)
Parameters
TimeSpan.GreaterThan
has the following parameters.
t1
- The first time interval to compare.t2
- The second time interval to compare.
Returns
TimeSpan.GreaterThan
method returns true if the value of t1 is greater than the value of t2; otherwise, false.
Example
The following example compares several TimeSpan objects to a reference TimeSpan using the GreaterThan operator.
using System;/*from w ww .ja v a 2s. com*/
class MainClass
{
static void Main( )
{
TimeSpan Left = new TimeSpan( 2, 0, 0 );
Console.WriteLine( Left > new TimeSpan( 0, 120, 0 ));
}
}
The code above generates the following result.