在 msdn链接中,提到
不要抛出 System.Exception 或 System.SystemException。
在我的代码中,我这样扔
private MsgShortCode GetshortMsgCode(string str)
{
switch (str.Replace(" ","").ToUpper())
{
case "QNXC00":
return MsgShortCode.QNXC00;
default:
throw new Exception("Invalid message code received");
}
}
这是不好的做法吗?