列值到数组c#

时间:2015-04-29 18:14:56

标签: c# arrays datagridview row

我有一个专栏,这是我的第三栏。

单击按钮时,我正在将值放入未知的数组大小。

 int rowCount = dataGridView1.Rows.Count; 
            string[] Priority = new string[rowCount];

            if (rowCount > 1) // only sort if bigger than one line
            {
                for (int i = 2; i < rowCount;  i++) 
                {
                    dataGridView1.Rows[i].Cells[2].Value = priority[i]; //put data into row thats been added
                }
            }

当我尝试使用多行时,我得到一个System.IndexOutOfRangeException,如果我想为数组添加一个值并且我不确定它有什么问题,那就没问题了?感谢

0 个答案:

没有答案