如上所述。字符串id是NULL值,尽管在调试时.Value不是NULL。
string id = dataGridView1[columnindex, rowindex].Value.ToString();
尝试通过将.Value
更改为.FormattedValue
来将值传递给ID,但也不起作用。
答案 0 :(得分:0)
string id = dataGridView1.Rows[rowIndex].Cells[columnIndex].Value.ToString
答案 1 :(得分:0)
然后尝试
string id = dataGridView1.Rows[rowIndex].Cells[columnIndex].EditedValueString();