C#读取datagridview中第i行第j列的数据,将第j列的数据分别定义为A,B,C
时间: 2024-03-25 12:39:19 浏览: 74
c#读取access,并用gridview显示数据
4星 · 用户满意度95%
您可以使用以下代码读取 DataGridView 中第 i 行第 j 列的数据,并将第 j 列的数据分别定义为 A、B、C:
```
string A = dataGridView1.Rows[i].Cells[j].Value.ToString();
string B = dataGridView1.Rows[i].Cells[j+1].Value.ToString();
string C = dataGridView1.Rows[i].Cells[j+2].Value.ToString();
```
其中,`dataGridView1` 是您的 DataGridView 控件名称,`i` 为行索引,`j` 为列索引。
请注意,如果第 j 列、第 j+1 列或第 j+2 列的单元格为空,则上述代码将引发 NullReferenceException 异常。您需要添加相应的空值检查以避免此问题。
阅读全文