我试图检查一个单元格的空值。我几乎没有得到这个错误,所以我需要一些关于如何测试它的帮助。这是我的代码:
private void installBackgroundWorker_DoWork(object sender, DoWorkEventArgs e)
{
File.WriteAllText("program_names.txt", String.Empty); // Clear program_names file
int num = 0;
foreach (DataGridViewRow row in programs_dgv.Rows)
{
DataGridViewCheckBoxCell cell = row.Cells[1] as DataGridViewCheckBoxCell;
if (cell.Value != null)
{
...
我如何测试和解决此问题?
答案 0 :(得分:1)
请检查单元格!= null&& cell.HasValue而不是cell.Value!= null