如何获得DataGridView中项点击为空?
int i = dg_show.CurrentRow.Index;string id = ds.Tables[0].Rows[i][0].ToString();//ds为获得数据库中表的DataSet
if(!id==null)
{
业务处理
}else
{
MessageBox.Show("此行为空");
}
我本来是这样做的,但在string id = ds.Tables[0].Rows[i][0].ToString()这里就出错啦
说是在此处没有任何行,
所以我只能用try~catch包围整段代码啦
但我觉得这样做就是表明出错啦,所以请问一下各位高手有没有更好的办法,而使他不出错呢?