Kimono.KDateTime.Spec.EquivalentTo C# (CSharp) Method

EquivalentTo() public method

Checks whether this instance is equivalent to another. The two instances are considered to be equivalent if any of the following conditions apply: - both instances are type ClockTime. - both instances are type OffsetFromUTC and their offsets from UTC are equal. - both instances are type TimeZone and their time zones are equal. - both instances are UTC. An instance is considered to be UTC if it is either type UTC, or is type OffsetFromUTC with a zero UTC offset.
public EquivalentTo ( KDateTime other ) : bool
other KDateTime
return bool
            public bool EquivalentTo(KDateTime.Spec other)
            {
                return (bool) interceptor.Invoke("equivalentTo#", "equivalentTo(const KDateTime::Spec&) const", typeof(bool), typeof(KDateTime.Spec), other);
            }