public Dog(string Breedname, string size, string color, int age)
public static void Main()
Dog Husky = new Dog("Husky", "Large", "Light Gray", 7);
Dog Labardoodle = new Dog("Labardoodle", "Small", "Orange", 3);
Dog German_Shepherd = new Dog("German Shepherd", "Large", "White & Orange", 6);
Console.WriteLine("My favorite dog is a " + Labardoodle.Breed);
Console.WriteLine("Her name is Maya");
Console.WriteLine("She is " + Labardoodle.Size);
Console.WriteLine("She is " + Labardoodle.Color);
Console.WriteLine("She is " + Labardoodle.Age + " years old");