C#中throw和try catch的區別是什麼?throw是不是用的比較少?什麼時候需要throw
比如說,用整數表示人的年紀,那麼負數就是非法的。
編寫如下代碼:
int _age;
public int Age
{
get { return _age; }
set
{
if (value < 0)
throw new InvalidParameterException("age can not below zero");
_age = value;
}
}