1

我有一个 DataTable,dt2,我试图在其中添加新行(在下面代码的 else 块中)。我不能简单地在 foreach 循环中添加行(我尝试使用 line dt2.Rows.Add(newRow);),因为这会破坏循环计数器或其他东西并导致以下错误:“集合已修改;枚举操作可能无法执行。”

因此,我尝试将新行值存储在 List 中,然后将 List 添加到循环外的表中。这在它编译并且确实添加了一些东西的意义上是有效的;不幸的是,它没有采用正确的值或列位置,而是显示这个废话:System.Collections.Generic.List`1[System.Object]

在此处输入图像描述

此外,信息显示在 Target_Folder、Target_File 和 Target_Checksum 下的第 3、第 4 和第 5 个索引列中,而不是在 Baseline_Folder 下。

如何在正确的列下存储和显示正确的值?

foreach (DataRow drow in dt2.Rows)
{
    if (drow["BASELINE_FILE"].ToString() == filename)
    {
        // do stuff
    }
    else
    {
        newRow = dt2.NewRow(); // newRow is a DataRow I declared up above
        newRow[3] = directory;
        newRow[4] = filename;
        newRow[5] = checksumList[j];
        newRow[6] = "Missing";
        //dt2.Rows.Add(newRow); 
        // can't add here because that increases the number of rows and screws up the foreach loop
        // therefore need to find way to store these values and add outside of loop
        newFiles.Add(newRow); // newFiles is a List
    }
}
dt2.Rows.Add(newFiles); // this doesn't work properly, doesn't take correct values
4

3 回答 3

0

如果您希望浏览现有网格中的每一行,这应该为您完成。这样 currentRows 在循环运行时不会被修改,因为它将是该列表的浅表副本。

var currentRows = from row in dataTable.Rows select row;
foreach (var row in currentRows)
{
    if(doStuffCondition){ doStuff();}
    else{
      DataRow newRow = dataTable.NewRow();
      newRow[1] = newValue;  //repeat until values are loaded
      employeesDataTable.Rows.Add(newRow);
    }
 }
于 2013-03-01T20:53:49.927 回答
0

这不在我的脑海中,但是按照这些思路应该可以工作:

DataRow dr = dt2.NewRow();
foreach (ListItem item in newFiles.Items)
{
dr[3] = item[3].ToString();
dr[4] = item[4].ToString();
etc.
}

如果您需要更多指导,请告诉我,我会更加努力地研究它。

于 2013-03-01T20:40:26.737 回答
0

我认为这是您真正想要做的:

DataRow[] drx = dt2.Select(string.Format("BASELINE_FILE = '{0}'" , filename));

if (drx.Length == 1)
 {
    // do stuff with drx[0]

 }
 else
 {
    newRow = dt2.NewRow(); // newRow is a DataRow I declared up above
    newRow[3] = directory;
    newRow[4] = filename;
    newRow[5] = checksumList[j];
    newRow[6] = "Missing";
    dt2.Rows.Add(newRow); 
 }

这样您就不需要遍历行。

于 2013-03-01T20:45:24.590 回答