gpt4 book ai didi

c# - 仅从 DataGridView 的特定列获取文本

转载 作者:行者123 更新时间:2023-11-30 13:43:08 26 4
gpt4 key购买 nike

我有一个填充了 4 列和多行数据的 DataGridView。我想遍历 DataGridView 并从仅特定列获取单元格值,因为我需要将此数据传递到方法中。

这是我的代码:

foreach (DataGridViewRow row in this.dataGridView2.Rows)
{
foreach (DataGridViewCell cell in row.Cells)
{
if (cell.Value == null || cell.Value.Equals(""))
{
continue;
}

GetQuestions(cell.Value.ToString());
}
}

这似乎遍历了所有单元格,但我需要能够指定如下内容:

foreach (DataGridViewRow row in this.dataGridView2.Rows)
{
foreach (DataGridViewCell cell in row.Cells[2])//Note specified column index
{
if (cell.Value == null || cell.Value.Equals(""))
{
continue;
}
GetQuestions(cell.Value.ToString());
}
}

最佳答案

难道你不想删除内部的 foreach 循环吗?还是我错过了什么?

foreach (DataGridViewRow row in this.dataGridView2.Rows)
{
DataGridViewCell cell = row.Cells[2]; //Note specified column index
if (cell.Value == null || cell.Value.Equals(""))
{
continue;
}

GetQuestions(cell.Value.ToString());
}

关于c# - 仅从 DataGridView 的特定列获取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/816618/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com