提取选中datagridview中某单元格的值为空时出错

不要使用 dataGridViewX1.Rows[e.RowIndex].Cells["txt"].Value.toString();

因为object为空时用.toString()会出错

可以使用Convert.ToString(dataGridViewX1.Rows[e.RowIndex].Cells["txt"].Value)来转换!

            

你可能感兴趣的:(提取选中datagridview中某单元格的值为空时出错)