Exemple #1
0
        /// <summary>
        /// Pies pochodzi od Zwierza, wiec możemy z Psa uzyskać Zwierza, a pozniej
        /// z tego Zwierza z powrotem Psa
        /// </summary>
        /// <param name="args">The command-line arguments.</param>
        static void main(string[] args)
        {
            var    pies = new Pies();
            Zwierz z    = new Zwierz();
            Pies   p1   = (Pies)z;

            Kot mruczek = new Kot();

            info(mruczek);

            Console.ReadKey();
        }
Exemple #2
0
        static void info(Zwierz z)
        {
            say(z.GetType() + z.name);

            if (z is ISpeakable)
            {
                ISpeakable zs = (ISpeakable)z;
                say(zs.GetVoice(Teoria.MyContansts.Loud));
            }

            if (z is Pies)
            {
                (z as Pies).Merda();
            }
        }