public Dog(string b, string s, string c, int a)
Console.WriteLine(Breed + " barks!");
public static void Main()
Dog bulldog = new Dog("Bulldog","large","light gray", 5);
Dog beagle = new Dog("Beagle","large","orange",6);
Dog germanshepherd = new Dog("German Shepherd", "large", "white and orange",6);
Dog[] dogs = new Dog[] {bulldog, beagle, germanshepherd};
foreach(Dog d in dogs) d.Bark();