Example #1
0
        static void Main(string[] args)
        {
            AbstractClass Pies = new Pies();

            Pies.Przedstaw();

            AbstractClass Kot = new Kot();

            Kot.Przedstaw();

            AbstractClass Krowa = new Krowa();

            Krowa.Przedstaw();

            AbstractClass Ptak = new Ptak();

            Ptak.Przedstaw();



            // Wait for user
            Console.ReadKey();
        }