Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Dog Wilson = new Dog("Wilson", 42);

            Wilson.Sound.MakeSound();

            Wilson.ChangeSound(new Meow("", 5));
            Wilson.Sound.MakeSound();


            Console.ReadKey();
        }