我正在尝试遍历 a 中的两列DataGridView
并将它们添加到如下坐标中
foreach (DataGridView row in dataGridView1.Rows)
{
double x = Convert.ToDouble(row["X"]);
double y = Convert.ToDouble(row["Y"]);
Coordinate c = new Coordinate(x, y);
Point p = new Point(c);
IFeature currentFeature = fs.AddFeature(p);
for (int i = 0; i < dataGridView1.Columns.Count; i++)
{
currentFeature.DataRow[i] = row[i];
}
}
但我遇到以下错误:
无法使用 [] 将索引应用于“System.Windows.Forms.DataGridViewRow”类型的表达式
你能告诉我为什么会这样吗?
问候,