public Dog(string b, string s, string c, int a)
Console.WriteLine(breed + " bark");
public static void Main()
Dog d1 = new Dog("Bulldog", "large", "light gray", 5);
Dog d2 = new Dog("Beagle", "large", "orange", 6);
Dog d3 = new Dog("German Shepherd", "large", "white & orange", 6);