TimeIntervalCollectionTEquals Method (TimeIntervalCollectionT, IEqualityComparerT) | 
 
        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: 25.1.421.0 (25.1.421.0)
Syntaxpublic bool Equals(
	TimeIntervalCollection<T> other,
	IEqualityComparer<T> dataComparer
)
Public Function Equals ( 
	other As TimeIntervalCollection(Of T),
	dataComparer As IEqualityComparer(Of T)
) As Boolean
public:
bool Equals(
	TimeIntervalCollection<T>^ other, 
	IEqualityComparer<T>^ dataComparer
)
member Equals : 
        other : TimeIntervalCollection<'T> * 
        dataComparer : IEqualityComparer<'T> -> bool 
Parameters
- other
 - Type: AGI.Foundation.TimeTimeIntervalCollectionT
        The instance to compare to this instance.
       - dataComparer
 - Type: System.Collections.GenericIEqualityComparerT
The object to use to compare the Data properties of intervals. 
Return Value
Type: 
Boolean if 
other represents the same value as this instance; otherwise 
.
      
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