Click or drag to resize

JulianDate.Equals Method (JulianDate)

Returns true if this date exactly equals another date. 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 bool Equals(
	JulianDate other
)

Parameters

other
Type: AGI.Foundation.Time.JulianDate
The date to compare to this instance.

Return Value

Type: Boolean
true if other represents the same value as this instance; otherwise false.

Implements

IEquatable<T>.Equals(T)
See Also