在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
//C#检测DataSet是否为空的方法 DataSet ds = new DataSet(); if (dt.Tables.Count > 0) { //有数据 } else((ds.Tables.Count==1&&ds.Tables[0].Rows.Count==0)||ds==null||ds.Tables.Count==0) { //无数据 } // C#检测DataTable是否为空的方法 DataTable dt = new DataTable(); if (dt.Rows.Count > 0) { //不为空的操作 } else (dt == null || dt.Rows.Count == 0) { //为空操作 }
|
请发表评论