GlobalPositioningSystemDateEquals Method (Object) |
Indicates whether another object is exactly equal to this instance.
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public override bool Equals(
Object obj
)
Public Overrides Function Equals (
obj As Object
) As Boolean
public:
virtual bool Equals(
Object^ obj
) override
abstract Equals :
obj : Object -> bool
override Equals :
obj : Object -> bool
Parameters
- obj
- Type: SystemObject
The object to compare to this instance.
Return Value
Type:
Boolean if
obj is an instance of this type and represents the same value as this instance; otherwise
.
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