TimeIntervalCollection.Equals 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.3.420.0 (24.3.420.0)
Syntaxpublic 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: System.Object
The object to compare to this instance.
Return Value
Type:
Booleantrue if
obj is an instance of this type and represents the same value as this instance; otherwise
false.
Remarks
In order for two collections to be considered equal, each
TimeInterval in one collection must
be equal to the
TimeInterval at the same index in the other collection.
See Also