当前位置: 代码迷 >> C# >> 怎么清除dataGridView中的记录
  详细解决方案

怎么清除dataGridView中的记录

热度:156   发布时间:2016-05-05 02:48:59.0
如何清除dataGridView中的记录
我用下面代码清除dataGridView中的记录,但是报错,请问如何解决?
if (dataGridView1.RowCount  > 0)
                {
                    dataGridView1.Rows.Clear();
                }
报错如下

ex = {"索引超出范围。必须为非负值并小于集合大小。\r\n参数名: index"}
------解决思路----------------------
错误代码不在这,可能在你一些关于grid的事件里,里面肯定访问了索引,但是你没有判断索引是否有效
  相关解决方案