TimeIntervalCollection.EqualsEpsilon Method |
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 other,
double epsilon
)
Public Function EqualsEpsilon (
other As TimeIntervalCollection,
epsilon As Double
) As Boolean
public:
virtual bool EqualsEpsilon(
TimeIntervalCollection^ other,
double epsilon
) sealed
abstract EqualsEpsilon :
other : TimeIntervalCollection *
epsilon : float -> bool
override EqualsEpsilon :
other : TimeIntervalCollection *
epsilon : float -> bool
Parameters
- other
- Type: AGI.Foundation.Time.TimeIntervalCollection
A TimeIntervalCollection to compare this one to. - epsilon
- Type: System.Double
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
IEquatableEpsilon<T>.EqualsEpsilon(T, Double)
See Also