0

我有一个从datagridviewwinform的数据库返回搜索结果的我。返回搜索后,我想从指定列中删除空行。这是一个例子:

在此处输入图像描述

假设我想删除类型#2列上具有空值的行。

我完全被困住了。我该怎么做?

4

1 回答 1

1
var rowsNull = (from a in dataGridView1.Rows.Cast<DataGridViewRow>()
    where a.Cells[2].Value == null
    select a).ToList();
foreach (DataGridViewRow item in rowsNull)
{
    dataGridView1.Rows.RemoveAt(item.Index);
}
于 2013-01-20T22:53:51.573 回答