如何在我的 FOREACH 中获取我的 DataGridView 下一行的值
foreach (DataGridViewRow row in dataGridViewSelection.Rows)
{
if ((bool)((DataGridViewCheckBoxCell)row.Cells[3]).Value)
{
do
{
list.Add(row.Cells[1].Value.ToString());
}
while (row.Cells[2].Value == the next row.Cells[2].Value-->of the next row);
}
}
我想在下一行中获取同一单元格的值,以便可以比较它们。谢谢
您需要使用 for
循环而不是 foreach
,但这很简单,因为 DataGridViewRowCollection 实现了所需的信息:
for (int rowNum=0;rowNum<dataGridViewSelection.Rows.Count - 1; ++rowNum)
{
DataGridViewRow row = dataGridViewSelection.Rows[rowNum];
if ((bool)((DataGridViewCheckBoxCell)row.Cells[3]).Value) {
do
{
list.Add(row.Cells[1].Value.ToString());
} while (row.Cells[2].Value == dataGridViewSelection.Rows[rowNum+1].Cells[2].Value);
}
}
通过索引编制索引,您可以轻松访问循环中的任何其他行。