예제 #1
0
        private void SayName_Button_Click(object sender, RoutedEventArgs e)
        {
            List <Animal> animals = new List <Animal>();
            // Define a new List of dogs
            List <Dog> dogs = new List <Dog>();

            // Instantiate some dog objects
            Dog dog1 = new Dog("Muppet", 20, "Rolf");
            Dog dog2 = new Dog("Golden Retriever", 30, "Air Bud");

            // Add the dogs to the list
            animals.Add(dog1);
            animals.Add(dog2);

            // Loop through the list and call a method on the objects

            Duck        duck1 = new Duck(25, "Harry");
            Duck        duck2 = new Duck(45, "Henrietta");
            List <Duck> ducks = new List <Duck>();

            animals.Add(duck1);
            animals.Add(duck2);


            Frog        frog1 = new Frog(2, "Bob", "Not Poisonous");
            Frog        frog2 = new Frog(4, "Robert", "Poisonous");
            List <Frog> frogs = new List <Frog>();

            animals.Add(frog1);
            animals.Add(frog2);


            WoollyBear        woollybear1 = new InheritanceIntro.WoollyBear(1, "oof", "brown");
            WoollyBear        woollybear2 = new InheritanceIntro.WoollyBear(10, "yeet", "white");
            List <WoollyBear> woollybears = new List <WoollyBear>();

            animals.Add(woollybear1);
            animals.Add(woollybear2);

            foreach (Animal animal in animals)
            {
                animal.SayName();
                MessageBox.Show("The height is " + animal.Height);
            }
        }
예제 #2
0
        private void silence_Button_Click(object sender, RoutedEventArgs e)
        {
            WoollyBear woollybear = new InheritanceIntro.WoollyBear();

            woollybear.silence();
        }