public Dog(string breed_input, string size_input, string colour_input, int age_input)
public static void Main()
Dog Dog1Object = new Dog("Bulldog","large","light gray",5);
Dog Dog2Object = new Dog("Beagle","large","orange",6);
Dog Dog3Object = new Dog("German Shepherd","large","white & orange",6);
Console.WriteLine("My most favorite dog is " + Dog1Object.breed);
Console.WriteLine("My second favorite dog is " + Dog2Object.breed + " and it is " + Dog2Object.colour +" in colour");
Console.WriteLine("My least favorite dog is " + Dog3Object.breed + " because it's size is "+Dog3Object.size);