Esempio n. 1
0
        public override int GetHashCode()
        {
            int hash = 1;

            if (Name.Length != 0)
            {
                hash ^= Name.GetHashCode();
            }
            if (Age != 0)
            {
                hash ^= Age.GetHashCode();
            }
            if (IsHappy != false)
            {
                hash ^= IsHappy.GetHashCode();
            }
            if (DateOfBirthLong != 0L)
            {
                hash ^= DateOfBirthLong.GetHashCode();
            }
            return(hash);
        }
Esempio n. 2
0
    // compare method
    public List <string> CompareChanges(AnnanaTeaPartySceneState other)
    {
        var result = new List <string>();

        if (!DrankTea.Equals(other.DrankTea))
        {
            result.Add(String.Format("DrankTea:\t{0}\t>>>\t{1}", other.DrankTea, DrankTea));
        }

        if (!InTheKitchen.Equals(other.InTheKitchen))
        {
            result.Add(String.Format("InTheKitchen:\t{0}\t>>>\t{1}", other.InTheKitchen, InTheKitchen));
        }

        if (!IsHappy.Equals(other.IsHappy))
        {
            result.Add(String.Format("IsHappy:\t{0}\t>>>\t{1}", other.IsHappy, IsHappy));
        }

        if (!IsInside.Equals(other.IsInside))
        {
            result.Add(String.Format("IsInside:\t{0}\t>>>\t{1}", other.IsInside, IsInside));
        }

        if (!IsLockOpen.Equals(other.IsLockOpen))
        {
            result.Add(String.Format("IsLockOpen:\t{0}\t>>>\t{1}", other.IsLockOpen, IsLockOpen));
        }

        if (!IsOutside.Equals(other.IsOutside))
        {
            result.Add(String.Format("IsOutside:\t{0}\t>>>\t{1}", other.IsOutside, IsOutside));
        }

        if (!IsReadingTheFine.Equals(other.IsReadingTheFine))
        {
            result.Add(String.Format("IsReadingTheFine:\t{0}\t>>>\t{1}", other.IsReadingTheFine, IsReadingTheFine));
        }

        if (!OwlFlownAway.Equals(other.OwlFlownAway))
        {
            result.Add(String.Format("OwlFlownAway:\t{0}\t>>>\t{1}", other.OwlFlownAway, OwlFlownAway));
        }

        if (!PickedUpItems.Equals(other.PickedUpItems))
        {
            result.Add(String.Format("PickedUpItems:\t{0}\t>>>\t{1}", other.PickedUpItems, PickedUpItems));
        }

        if (!TeaBagInTheCup.Equals(other.TeaBagInTheCup))
        {
            result.Add(String.Format("TeaBagInTheCup:\t{0}\t>>>\t{1}", other.TeaBagInTheCup, TeaBagInTheCup));
        }

        if (!TeapotOnTheStove.Equals(other.TeapotOnTheStove))
        {
            result.Add(String.Format("TeapotOnTheStove:\t{0}\t>>>\t{1}", other.TeapotOnTheStove, TeapotOnTheStove));
        }

        if (!TeapotOnTheTable.Equals(other.TeapotOnTheTable))
        {
            result.Add(String.Format("TeapotOnTheTable:\t{0}\t>>>\t{1}", other.TeapotOnTheTable, TeapotOnTheTable));
        }

        if (!ThrewCup.Equals(other.ThrewCup))
        {
            result.Add(String.Format("ThrewCup:\t{0}\t>>>\t{1}", other.ThrewCup, ThrewCup));
        }

        if (!TookTheFine.Equals(other.TookTheFine))
        {
            result.Add(String.Format("TookTheFine:\t{0}\t>>>\t{1}", other.TookTheFine, TookTheFine));
        }

        if (!UsedItems.Equals(other.UsedItems))
        {
            result.Add(String.Format("UsedItems:\t{0}\t>>>\t{1}", other.UsedItems, UsedItems));
        }

        if (!WaterInTheCup.Equals(other.WaterInTheCup))
        {
            result.Add(String.Format("WaterInTheCup:\t{0}\t>>>\t{1}", other.WaterInTheCup, WaterInTheCup));
        }

        return(result);
    }