JulianDate Operators |
The JulianDate type exposes the following members.
Name | Description | |
---|---|---|
Addition |
Adds a Duration to a JulianDate, producing a new
Julian date.
| |
Equality |
Returns true if the two dates are exactly equal. To be considered equal, the Day
and SecondsOfDay properties must be identical when converted to a common time standard.
It is highly recommended that you use EqualsEpsilon(JulianDate, Double) or IsIdentical(JulianDate)
instead of this method.
| |
GreaterThan |
Returns true if left occurs after right.
| |
GreaterThanOrEqual |
Returns true if left occurs after or at the same time as right.
| |
Inequality |
Returns true if the two dates are NOT exactly equal. To be considered equal, the Day
and SecondsOfDay properties must be identical when converted to a common time standard.
It is highly recommended that you use EqualsEpsilon(JulianDate, Double) or IsIdentical(JulianDate)
instead of this method.
| |
LessThan |
Returns true if left occurs before right.
| |
LessThanOrEqual |
Returns true if left occurs before or at the same time as right.
| |
Subtraction(JulianDate, Duration) |
Subtracts a Duration from a Julian date, yielding a new
JulianDate.
| |
Subtraction(JulianDate, JulianDate) |
Subtracts a Julian date from another Julian date, yielding a
Duration.
|