在 C# 中的 for every rowset 循环中跳过一行

发布于 2024-11-26 21:37:49 字数 149 浏览 0 评论 0原文

我正在循环遍历每个数据行的数据集,

 foreach (DataRow DRow in ds.Tables[0].Rows)

我想在 if 语句为真时跳转当前行。 有知道如何做的线索吗?

提前致谢 !

I am looping through a dataset for each data row

 foreach (DataRow DRow in ds.Tables[0].Rows)

I would like to jump the current row when ever a if statement is true.
Any clue how to do it?

Thanks in advance !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

朱染 2024-12-03 21:37:49

使用 Continue

 foreach (DataRow DRow in ds.Tables[0].Rows)
 {
     if(expression) 
         continue;
 }

Continue 跳过当前元素的 foreach 块的剩余部分,并继续到集合中的下一个新元素。

Use continue:

 foreach (DataRow DRow in ds.Tables[0].Rows)
 {
     if(expression) 
         continue;
 }

continue skips the remaining part of the foreach block for the current element an continues at the next new element in your collection.

仲春光 2024-12-03 21:37:49

试试这个:

foreach (DataRow DRow in ds.Tables[0].Rows)
{
    if(true) // escape condition met
         continue;
}

Try this:

foreach (DataRow DRow in ds.Tables[0].Rows)
{
    if(true) // escape condition met
         continue;
}
浊酒尽余欢 2024-12-03 21:37:49

您正在寻找继续关键字...

foreach (DataRow DRow in ds.Tables[0].Rows) {
    if(condition)
        continue;
}

You are looking for the continue keyword...

foreach (DataRow DRow in ds.Tables[0].Rows) {
    if(condition)
        continue;
}
邮友 2024-12-03 21:37:49

continue; 指令告诉循环跳过其余代码并移至下一次迭代。

foreach (DataRow DRow in ds.Tables[0].Rows)
{
    if (--condition here--) continue;
}

The continue; instruction tells a loop to skip the rest of the code and move to the next iteration.

foreach (DataRow DRow in ds.Tables[0].Rows)
{
    if (--condition here--) continue;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文