public static void Main()
Dog MyPuppy = new Dog("Spot", "Black", 68.4, true);
Console.WriteLine(String.Format("Hi, my name is {0}, I'm a {1} dog, I weigh {2} pounds and I'm a {3}.", MyPuppy.Name, MyPuppy.Color, MyPuppy.Weight, (MyPuppy.IsMale)?"boy":"girl"));
public Dog(string name, string color, double weight, bool isMale){