public Dog(string breed, string size, string color, int age)
Console.WriteLine(Breed + " bark");
public static void Main()
Dog Lucy = new Dog("Labrador Retriever", "Medium", "Brown", 13);
Dog Murphy = new Dog("Beagle", "Small", "Tri-Colored", 2);
Dog Bella = new Dog("Golden Doodle", "Small", "Yellow", 5);