0

如上。字符串 id 是 NULL 值,尽管 .Value 在我调试时不是 NULL。

string id = dataGridView1[columnindex, rowindex].Value.ToString();

试图通过更改为 id 将值传递给.Value.FormattedValue但也不起作用。

4

2 回答 2

0

然后尝试

string id = dataGridView1.Rows[rowIndex].Cells[columnIndex].EditedValueString();
于 2013-01-17T13:31:31.893 回答
0
string id = dataGridView1.Rows[rowIndex].Cells[columnIndex].Value.ToString
于 2013-01-17T08:47:05.743 回答