public Dog(string b, string s, string c, int a)
Console.WriteLine(Breed + " barks!");
public static void Main()
Dog d1 = new Dog("G. Shepherd", "Large", "Brown", 1);
Dog d2 = new Dog("Beagle", "Medium", "Spotted", 5);
Dog d3 = new Dog("Poodle", "Medium", "Black", 10);
Console.WriteLine("Hello World");