JulianDateLessThanOrEqual Operator |
Returns true if left occurs before or at the same time as 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 <=(
JulianDate left,
JulianDate right
)
Public Shared Operator <= (
left As JulianDate,
right As JulianDate
) As Boolean
public:
static bool operator <=(
JulianDate left,
JulianDate right
)
static let inline (<=)
left : JulianDate *
right : JulianDate : bool
Parameters
- left
- Type: AGI.Foundation.TimeJulianDate
The date on the left side. - right
- Type: AGI.Foundation.TimeJulianDate
The date on the right side.
Return Value
Type:
Boolean if the
left is less than or equal to
right; otherwise
.
See Also