Gets whether one TimeOfDay is later than or the same as another.

Namespace:  Mindscape.WpfElements
Assembly:  Mindscape.WpfElements (in Mindscape.WpfElements.dll)
Version: 3.0.0.0 (3.0.0.0)

Syntax

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

Parameters

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

Return Value

true if first is later than or the same as second; otherwise false.

See Also