dataGridView报错Index was out of range. Must be non-negative and less than the size.

年末总结3
如题,实际上这是我在为datagridview设置表头为中文的时候遇到报错情况:

Index was out of range. Must be non-negative and less than the size. balabalaba

这其实就是告诉你,比如你写的

dataGridView1.Rows[0].HeaderCell.Value = "编号"; 
dataGridView1.Rows[1].HeaderCell.Value = "姓名"; 
dataGridView1.Rows[2].HeaderCell.Value = "手机号"; 

下标超出实际数组大小了。

说说我自己的问题。
我首先先设置了中文表头,然后才给datagridview放数据
所以原先datagridview里是空的,自然下标超出实际数组大小了。

你可能感兴趣的:(c#visual,studio)