你能从列表中删除一个项目吗<>在 C# 中迭代​​它时

Can you remove an item from a Listlt;gt; whilst iterating through it in C#(你能从列表中删除一个项目吗lt;gt;在 C# 中迭代​​它时)
本文介绍了你能从列表中删除一个项目吗<>在 C# 中迭代​​它时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您能否在迭代时从列表中删除一个项目<>?这会起作用吗,还是有更好的方法来做到这一点?

Can you remove an item from a List<> whilst iterating through it? Will this work, or is there a better way to do it?

我的代码:

foreach (var bullet in bullets)
  {
    if (bullet.Offscreen())
    {
      bullets.Remove(bullet);
    }
  }

-edit- 抱歉各位,这是给 Silverlight 游戏的.我没有意识到 silverlight 与 Compact Framework 不同.

-edit- Sorry guys, this is for a silverlight game. I didn't realise silverlight was different to the Compact Framework.

推荐答案

编辑:澄清一下,问题是关于 Silverlight,它显然不支持 RemoveAll on List`T.它在 完整框架、CF、XNA 2.0+ 版本中可用

Edit: to clarify, the question is regarding Silverlight, which apparently does not support RemoveAll on List`T. It is available in the full framework, CF, XNA versions 2.0+

您可以编写一个表达您的删除标准的 lambda:

You can write a lambda that expresses your removal criteria:

bullets.RemoveAll(bullet => bullet.Offscreen());

或者你可以选择你想要的,而不是删除你不想要的:

Or you can select the ones you do want, instead of removing the ones you don't:

bullets = bullets.Where(b => !b.OffScreen()).ToList();

或者使用索引器在序列中向后移动:

Or use the indexer to move backwards through the sequence:

for(int i=bullets.Count-1;i>=0;i--)
{
    if(bullets[i].OffScreen())
    {
        bullets.RemoveAt(i);
    }
}

这篇关于你能从列表中删除一个项目吗&lt;&gt;在 C# 中迭代​​它时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)