Click or drag to resize

JulianDateInequality Operator

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.

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 bool operator !=(
	JulianDate left,
	JulianDate right
)

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 dates are not equal; otherwise .
See Also