Click or drag to resize

JulianDate.Equality Operator

Returns true if two dates are exactly equal. To be considered equal, Day and SecondsOfDay 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: 25.1.421.0 (25.1.421.0)
Syntax
public static bool operator ==(
	JulianDate left,
	JulianDate right
)

Parameters

left
Type: AGI.Foundation.Time.JulianDate
The date on the left side.
right
Type: AGI.Foundation.Time.JulianDate
The date on the right side.

Return Value

Type: Boolean
true if the dates are equal; otherwise false.
See Also