public Dog(string strBreed, string strSize, string strColor, int intAge)
Console.WriteLine("{0} - Bark!", Breed);
public static void Main()
Dog dog1 = new Dog("Bulldog", "large", "light grey", 5);
Dog dog2 = new Dog("Beagle", "large", "orange", 6);
Dog dog3 = new Dog("German Shepherd", "large", "white & orange", 6);