public Dog(string strInput1, string strInput2, int iInput)
public static void Main()
Dog dog1 = new Dog("Bulldog", "light gray", 5);
Dog dog2 = new Dog("Beagle", "orange", 6);
Console.WriteLine("Dog 1");
Console.WriteLine(dog1.strBreed);
Console.WriteLine(dog1.strColor);
Console.WriteLine(dog1.iAge);
Console.WriteLine("Dog 2");
Console.WriteLine(dog2.strBreed);
Console.WriteLine(dog2.strColor);
Console.WriteLine(dog2.iAge);