指数超出范围

时间:2015-11-22 19:06:07

标签: c# .net datagridview

有人可以帮助处理这段有异常的代码片段。它总是堆叠在[2,0]索引上。我无法弄清楚如何解决这个问题。我在下面添加了截图。

randomDiv.innerHTML = "<a target='_blank' href='http://example.com/"+newText+"'>"+newText"</a>";

enter image description here

1 个答案:

答案 0 :(得分:0)

此处的问题是DataGridView的{​​{3}}。

DataGridView的索引类似于[col, row],而矩阵索引为[row, col]

通过将grid[i, j]更改为grid[j, i],问题将得到解决。