Gets whether one TimeOfDay is later than another.

Namespace: Mindscape.SilverlightElements
Assembly: Mindscape.SilverlightElements (in Mindscape.SilverlightElements.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

C#
public static bool operator >(
	TimeOfDay first,
	TimeOfDay second
)
Visual Basic
Public Shared Operator > ( _
	first As TimeOfDay, _
	second As TimeOfDay _
) As Boolean
Visual C++
public:
static bool operator >(
	TimeOfDay first, 
	TimeOfDay second
)

Parameters

first
Type: Mindscape.SilverlightElements..::..TimeOfDay
The first TimeOfDay to compare.
second
Type: Mindscape.SilverlightElements..::..TimeOfDay
The second TimeOfDay to compare.

Return Value

true if first is later than second; otherwise false.

See Also