0

我的自定义对象有两个属性:useridusername. 在这里,我找到了如何使用循环
遍历每个,但我不知道如何将当前单元格值分配给我的自定义对象值。DataGridViewRowforeach

foreach (DataGridViewRow dr in dataGridView1.Rows) 
{
    ClsOBJ userobj1 = new ClsOBJ();

    foreach (DataGridViewCell dc in dr.Cells) 
    {
        // userobj1.userid =
        // cell index 0 should be read to userid
        // and cell index 1 should be read to username
        // userobj1.username =
    }

    list1.Add(userobj1);
}
4

1 回答 1

0

无需遍历单元格的集合。只需访问每个并根据需要进行转换:

foreach (DataGridViewRow dr in dataGridView1.Rows) 
{
    ClsOBJ userobj1 = new ClsOBJ();

    userobj1.userid = Convert.ToInt32(dr.Cells[0].Value);
    userobj1.username = Convert.ToString(dr.Cells[1]);

    list1.Add(userobj1);
}

您可以使用LINQ填充列表,但如果您不熟悉它,则foreach循环非常好。

list1.AddRange(
    dataGridView1.Rows
                 .Cast<DataGridViewRow>()
                 .Select(x => new ClsOBJ
                                  {
                                    userid = Convert.ToInt32(x.Cells[0].Value),
                                    username = Convert.ToString(x.Cells[1].Value)
                                  }));
于 2014-05-12T02:15:29.443 回答