public void PrintName(string name)
Console.WriteLine("The name of the animal is " + name);
public void PrintBreed(string breed)
Console.WriteLine("The breed of the dog is " + breed);
public class DowncastingExample
public static void Main(string[] args)