gpt4 book ai didi

c# - 如果特定单元格值在数据表 C# 中包含零,则跳过整行

转载 作者:行者123 更新时间:2023-11-30 12:21:03 24 4
gpt4 key购买 nike

我可以跳过数据表中的第一行,以便在使用以下代码循环遍历数据表时不进行进一步处理

 DataTable dt;
foreach (DataRow r in dt.Rows.Cast<DataRow>().Skip(1))
{
//do something...
}

但是如果数据表中该行的特定单元格值为空,我需要跳过整行以避免进一步处理

我不确定我该怎么做,有人可以帮忙吗..提前致谢

最佳答案

        foreach (DataRow r in dt.Rows.Cast<DataRow>().Skip(1))
{
if (r["ThisColumnHas0Value"].ToString() == "0")
{
Console.WriteLine("SKIP");
continue;
}
Console.Write("PROCESS");
}

关于c# - 如果特定单元格值在数据表 C# 中包含零,则跳过整行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47824766/

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