DurationGreaterThanOrEqual Operator |
Returns if left is longer than or exactly equal to right.
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static bool operator >=(
Duration left,
Duration right
)
Public Shared Operator >= (
left As Duration,
right As Duration
) As Boolean
public:
static bool operator >=(
Duration left,
Duration right
)
static let inline (>=)
left : Duration *
right : Duration : bool
Parameters
- left
- Type: AGI.Foundation.TimeDuration
The left Duration. - right
- Type: AGI.Foundation.TimeDuration
The right Duration.
Return Value
Type:
Boolean if left is greater than or equal to right; otherwise
.
See Also