C#如何抛出异常

2024-12-30 06:52:29
推荐回答(3个)
回答1:

你可以在DataSet ds = conAcc.fenye(str_sql);这句代码后面加个判断
if(ds.Table[0].Rows.Count==0)//绑定之前就判断从数据库中是否有数据
{
//做处理!
}

回答2:

throw new exception ("test");

回答3:

.net 检查异常的方式有2种,try{}catch{}块,和throw. 你这种情况适合用throw