public Dog(string b, string s, string c, int age)
Console.WriteLine(breed + " bark!");
public static void Main()
Dog object1 = new Dog("Bulldog", "large", "light gray", 5);
Dog object2 = new Dog("Beagle", "large", "orange", 6);
Dog object3 = new Dog("German Shepherd", "large", "white & orange", 6);