GlobalPositioningSystemDate.Equals Method (GlobalPositioningSystemDate) |
Indicates whether another instance of this type is exactly equal to this instance.
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.3.420.0 (24.3.420.0)
Syntaxpublic bool Equals(
GlobalPositioningSystemDate other
)
Public Function Equals (
other As GlobalPositioningSystemDate
) As Boolean
public:
virtual bool Equals(
GlobalPositioningSystemDate other
) sealed
abstract Equals :
other : GlobalPositioningSystemDate -> bool
override Equals :
other : GlobalPositioningSystemDate -> bool
Parameters
- other
- Type: AGI.Foundation.Time.GlobalPositioningSystemDate
The instance to compare to this instance.
Return Value
Type:
Booleantrue if
other represents the same value as this instance; otherwise
false.
Implements
IEquatable<T>.Equals(T)
Remarks
For two dates to be considered equal, the
Week
and
DayOfWeek properties must be identical and the difference
between the
SecondsOfDay properties must be less than 1.0e-10.
See Also