Click or drag to resize

JulianDateSubtraction Operator (JulianDate, Duration)

Subtracts a Duration from a Julian date, yielding a new JulianDate.

Namespace:  AGI.Foundation.Time
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static JulianDate operator -(
	JulianDate left,
	Duration right
)

Parameters

left
Type: AGI.Foundation.TimeJulianDate
The minuend.
right
Type: AGI.Foundation.TimeDuration
The subtrahend.

Return Value

Type: JulianDate
A new Julian Date that is the result of the subtraction; that is, left minus right.
Remarks
If the Standard of right is different from the Standard of left, left will be converted to right's time standard before performing the subtraction. Then, the result will be converted to this JulianDate's time standard before it is returned, unless the result cannot be represented in this JulianDate's time standard, in which case it will remain in a TimeStandard that can represent the result.
See Also