Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Bear barryTheBear = new Bear();

            barryTheBear.Weight = 2000;

            Lemur melman = new Lemur();

            melman.Weight       = 25;
            melman.HasFingers   = true;
            melman.NumberOfLegs = 2;

            PolarBear cokeaCola = new PolarBear();
            Animal    theJSWiz  = new Animal();

            theJSWiz.NumberOfLegs = 2;
            theJSWiz.Eyes         = true;



            barryTheBear.Walk();
            barryTheBear.Speak();

            Console.ReadLine();
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            Bear yogi = new Bear();

            yogi.StateType();
            yogi.GetMad();

            PandaBear panda = new PandaBear();

            panda.StateType();
            panda.GetMad();
        }
Exemplo n.º 3
0
        static void Main(string[] args)
        {
            Bear barryTheBear = new Bear();

            barryTheBear.Weight = 2000;
            barryTheBear.Walks();
            barryTheBear.Speaks();


            PolarBear CokeACola = new PolarBear();

            Animal theJSWiz = new Animal();

            theJSWiz.NumberOfLegs = 2;


            Console.ReadLine();
        }
Exemplo n.º 4
0
        static void Main(string[] args)
        {
            Bear barryTheBear = new Bear();

            barryTheBear.Weight = 2000;

            Dog Freddy = new Dog();

            Freddy.Weight  = 250;
            Freddy.Name    = "Fred the odd one";
            Freddy.HasEyes = true;

            Console.WriteLine(Freddy.Weight);

            barryTheBear.Walks();
            barryTheBear.Speak();

            Polarbear cokeACola = new Polarbear();


            Console.ReadLine();
        }