データグリッドビューの引数 outofrangeexception があります。
私はそれを埋めようとします。i = 1 のときに停止します。
どこが間違っているのかわかりませんが、配列ではありませんdonnee[,]
これが私のコードです
for(int i = 0; i < donnee.Length/4; i++){
dataGridView1.Rows[i].Cells[0].Value = donnee[i,0];
dataGridView1.Rows[i].Cells[1].Value = donnee[i,1];
dataGridView1.Rows[i].Cells[2].Value = donnee[i,2];
dataGridView1.Rows[i].Cells[3].Value = donnee[i,3];
}//REMPLIR DATAGRIDVIEW
ありがとう