Kimono.KTimeZone.Equals C# (CSharp) 메소드

Equals() 공개 메소드

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
리턴 bool
        public override bool Equals(object o)
        {
            if (!(o is KTimeZone)) { return false; }
            return this == (KTimeZone) o;
        }