The exception thrown near bottom of page has invalid arguments. Should be:
Code:
public double HeightInInches
{
get { return heightInInches; }
set
{
if (value <= 60)
{
throw new ArgumentOutOfRangeException("value", "Height must be greater than 5 feet (60 inches).");
}
heightInInches = value;
}
}