C#:winform 检查DataGridView单元格是否为空

检查cell的value 是否为空
使用这个方法
if (string.IsNullOrEmpty(dataGridView1.Rows[0].Cells[7].Value as string))

做判断,切记不能使用tostring()否则程序为报异常 也不能使用value==null进行判断,否则也会抛异常

你可能感兴趣的:(c#,开发语言)