在 C# 中的 for every rowset 循环中跳过一行
我正在循环遍历每个数据行的数据集,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
Continue
:Continue
跳过当前元素的 foreach 块的剩余部分,并继续到集合中的下一个新元素。Use
continue
:continue
skips the remaining part of the foreach block for the current element an continues at the next new element in your collection.试试这个:
Try this:
您正在寻找
继续
关键字...You are looking for the
continue
keyword...continue;
指令告诉循环跳过其余代码并移至下一次迭代。The
continue;
instruction tells a loop to skip the rest of the code and move to the next iteration.