Duration.GreaterThan Operator |
Returns true if left is longer than right.
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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.Time.Duration
The left Duration. - right
- Type: AGI.Foundation.Time.Duration
The right Duration.
Return Value
Type:
Booleantrue if left is greater than right; otherwise
false.
See Also