大家好,我是新来的=)
在最小的麻烦情况下,我需要您的帮助,为我节省时间 =)
问题在于,我想要 datagridview 单元格值并将值保存到数组中。
到目前为止它工作正常,但它只是读取第一行单元格,然后在该过程之后它只是告诉索引超出范围,但我不明白为什么。
foreach (DataGridViewRow row in dataGridView1.Rows) //wo soll er sich aufhalten -> zeilen
{
**if (row.Cells[i].Value == null)**
{
MessageBox.Show("This row is empty");
break;
}
if (row.Cells[i].Value != null)
{
UnsortArray[i] = row.Cells[i].Value.ToString();
MessageBox.Show(UnsortArray[i]);
++i;
}
}