C# – while循环中的foreach循环 – 打破foreach并立即继续while循环?

前端之家收集整理的这篇文章主要介绍了C# – while循环中的foreach循环 – 打破foreach并立即继续while循环?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
while (foo() == true)
{
   foreach (var x in xs)
   {
       if (bar(x) == true)
       {
           //"break;" out of this foreach
           //AND "continue;" on the while loop.
       }
   }

   //If I didn't continue,do other stuff.
}

我有点坚持如何做到这一点.

更新:我修正了问题.我遗漏了一个事实,即如果我不打电话给继续,我需要处理其他事情;在while循环中.

对不起,我没有意识到我曾两次使用“某事”这个词.

解决方法

如果我理解正确,您可以在此处使用LINQ Any/ All谓词:
while (something)
{
    // You can also write this with the Enumerable.All method
   if(!xs.Any(x => somePredicate(x))
   {
      // Place code meant for the "If I didn't continue,do other stuff."
      // block here.
   }
}
原文链接:https://www.f2er.com/csharp/98168.html

猜你在找的C#相关文章