static void Main(string[] args) { Dog Wilson = new Dog("Wilson", 42); Wilson.Sound.MakeSound(); Wilson.ChangeSound(new Meow("", 5)); Wilson.Sound.MakeSound(); Console.ReadKey(); }