DurationEquals Method (Object) | 
 
            Returns 
 if this 
Duration exactly equals another 
Duration, within the limits
            of floating point precision.  To be considered equal, the 
Days
            and 
Standard properties must be identical (or one must be null) and the
            difference between the 
Seconds properties must be less than 1.0e-10.
            
 
    Namespace: 
   AGI.Foundation.Time
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.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: SystemObject
The other Duration. 
Return Value
Type: 
Boolean if this 
Duration exactly equals the 
objDuration, within the limits of floating point precision.
Remarks
            This method returns  if the two instances have different time standards,
            even if the values would be the same when converted to the same time standard.
            
See Also