TimeIntervalCollectionTEquals Method (TimeIntervalCollectionT) |
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.2.419.0 (24.2.419.0)
Syntax public bool Equals(
TimeIntervalCollection<T> other
)
Public Function Equals (
other As TimeIntervalCollection(Of T)
) As Boolean
public:
virtual bool Equals(
TimeIntervalCollection<T>^ other
) sealed
abstract Equals :
other : TimeIntervalCollection<'T> -> bool
override Equals :
other : TimeIntervalCollection<'T> -> bool
Parameters
- other
- Type: AGI.Foundation.TimeTimeIntervalCollectionT
The instance to compare to this instance.
Return Value
Type:
Boolean if
other represents the same value as this instance; otherwise
.
Implements
IEquatableTEquals(T)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