Hide

YetaWF.Core Package Documentation

Display
Print

YetaWF.Core.Components.TimeOfDay operator <= Overload

Compares two YetaWF.Core.Components.TimeOfDay instances whether the first instance is less than or equal to the second instance.

Class: YetaWF.Core.Components.TimeOfDay
Namespace: YetaWF.Core.Components
Assembly: YetaWF.Core

Syntax

public static bool operator <=(
    TimeOfDay? thisTime,
    TimeOfDay? thatTime );

Parameters

thisTime

The first YetaWF.Core.Components.TimeOfDay instance to compare. May be null.

thatTime

The second YetaWF.Core.Components.TimeOfDay instance to compare. May be null.

Return Value

Returns true if the first instance is less than or equal to the second instance, false otherwise.

Remarks

TimeOfDay values are compared so earlier times are considered smaller. A null YetaWF.Core.Components.TimeOfDay instance is considered smaller (earlier) than a non-null value.

See Also YetaWF.Core.Components.TimeOfDay ClassYetaWF.Core Overview