protected DataTable RemoveEmpty(DataTable dt)
{
List
for (int i = 0; i < dt.Rows.Count; i++)
{
bool IsNull = true;
for (int j = 0; j < dt.Columns.Count; j++)
{
if (!string.IsNullOrEmpty(dt.Rows[i][j].ToString().Trim()))
{
IsNull = false;
}
}
if (IsNull)
{
removelist.Add(dt.Rows[i]);
}
}
for (int i = 0; i < removelist.Count; i++)
{
dt.Rows.Remove(removelist[i]);
}
return dt;
}
相关文章
- 10-06怎么去掉li标签前面的点??
- 10-06go去掉u0000字符
- 10-06LINQ系列:LINQ to DataSet的DataTable操作
- 10-06navigationController 去掉背景图片、去掉底部线条
- 10-06使用Linq 来解决Datatable 去除数据重复
- 10-06android开发去掉TextView使用html.from里面的a链接的下划线的方法
- 10-06如何去掉WinForm或者WPF的最大化和最小化按钮
- 10-06Excel/WPS表格中求一组数据中去掉最大最小值的平均数和标准差
- 10-06as3 去掉字符串空白问题
- 10-06把DataTable中的数据拼接成XML时遇到的问题