0

我收到一个名为 URL 未找到错误的列。

我添加了一个新的 dataGridView 并创建了 2 列。我将列命名为 URL 和 Offensive。我仅将 CSV 文件中的数据导入第 1 列。

 TextFieldParser parser = new TextFieldParser(@"C:\\file.csv");
 parser.TextFieldType = FieldType.Delimited;
 parser.SetDelimiters(",");
 while (!parser.EndOfData)
 {
    //Processing row
    string[] fields = parser.ReadFields();
    foreach (string field in fields)
    {
       //TODO: Process field
       DataGridViewRow row = (DataGridViewRow)dataGridView1.Rows[0].Clone();                    
       row.Cells["URL"].Value = field;
       row.Cells["Offensive"].Value = "";
       dataGridView1.Rows.Add(row);
    }
 }
 parser.Close();
4

0 回答 0