public Dog(string breed, string size, string color, int age) {
Console.WriteLine(Breed + " says: Bark!");
public static void Main()
Dog dog1 = new Dog("Pitbull", "Large", "Black", 4);
Dog dog2 = new Dog("Australian Shepard", "Medium", "Spotted", 8);
Dog dog3 = new Dog("Beagle", "Small", "Brown", 1);