Beispiel #1
0
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }
            if (obj.GetType() != GetType())
            {
                return(false);
            }
            if (obj == this)
            {
                return(true);
            }

            Bundle other = (Bundle)obj;

            return(GetHashCode() == other.GetHashCode());
        }