for (int i=0;i<10;i++)
{
dataGridView1.Rows[i].Cells[0].Value = 123;
dataGridView1.Rows[i].Cells[1].Value = 456;
dataGridView1.Rows[i].Cells[2].Value = 789;
}
就是这么简单的代码,赋值10行,0行还可以,1行就不行了,就超出范围了,这该怎么改?