您可以帮我在excel中获取非空的行和列。我正在做一个项目,它在excel中获取数据并在datagridview中显示它,但它也获得null或空的行和列。
答案 0 :(得分:1)
在将值添加到String.IsNullOrEmpty()
之前使用DataGridView
函数。
试试这个:
string str="/*assign cell value from excel*/";
if(!String.IsNullOrEmpty(str))
{
//now Add the cell value to DataGridView as cell is not empty
}
注意:如果您可以使用代码编辑问题,则很容易解决问题。