111,097
社区成员




class Date
{
private int _Month = 1;
public int Month
{
get { return _Month; }
set
{
if (value < 1 || value > 12) throw new Exception("invalid month");
_Month = value;
}
}
...
}