TimeIntervalCollectionTEqualsEpsilon Method (TimeIntervalCollectionT, Double) | 
  
    Namespace: 
   AGI.Foundation.Time
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic bool EqualsEpsilon(
	TimeIntervalCollection<T> other,
	double epsilon
)
Public Function EqualsEpsilon ( 
	other As TimeIntervalCollection(Of T),
	epsilon As Double
) As Boolean
public:
virtual bool EqualsEpsilon(
	TimeIntervalCollection<T>^ other, 
	double epsilon
) sealed
abstract EqualsEpsilon : 
        other : TimeIntervalCollection<'T> * 
        epsilon : float -> bool 
override EqualsEpsilon : 
        other : TimeIntervalCollection<'T> * 
        epsilon : float -> bool Parameters
- other
 - Type: AGI.Foundation.TimeTimeIntervalCollectionT
A TimeIntervalCollectionT to compare this one to. - epsilon
 - Type: SystemDouble
The largest difference between the Start and Stop dates, in seconds, such that they will be considered equal. 
Return Value
Type: 
BooleanTrue if all 
TimeIntervals are equal as defined by the epsilon value.
Implements
IEquatableEpsilonTEqualsEpsilon(T, Double)
See Also