Kimono.KTimeZone.Equals C# (CSharp) Method

Equals() public method

Checks whether this is the same instance as another one. Note that only the pointers to the time zone data are compared, not the contents. So it will only return equality if one instance was copied from the other. name="rhs" other instance
public Equals ( object o ) : bool
o object
return bool
        public override bool Equals(object o)
        {
            if (!(o is KTimeZone)) { return false; }
            return this == (KTimeZone) o;
        }