收藏已修改;枚举操作可能无法在 ArrayList 中执行
- 作者: 悲秋画扇
- 来源: 51数据库
- 2023-02-08
问题描述
我正在尝试从 ArrayList 中删除一个项目,但我得到了这个异常:
集合被修改;枚举操作可能无法执行.
I'm trying to remove an item from an ArrayList and I get this Exception:
Collection was modified; enumeration operation may not execute.
有什么想法吗?
推荐答案
您在 foreach 期间删除了项目,是吗?简单地说,你不能.这里有一些常见的选项:
You are removing the item during a foreach, yes? Simply, you can't. There are a few common options here:
- 将 List<T> 和 RemoveAll 与谓词一起使用
按索引向后迭代,删除匹配项
- use List<T> and RemoveAll with a predicate
iterate backwards by index, removing matching items
for(int i = list.Count - 1; i >= 0; i--) {
if({some test}) list.RemoveAt(i);
}
使用foreach,并将匹配项放入第二个列表;现在枚举第二个列表并从第一个列表中删除这些项目(如果你明白我的意思)
use foreach, and put matching items into a second list; now enumerate the second list and remove those items from the first (if you see what I mean)
推荐阅读
- C#通过fleck实现wss协议的WebSocket多人Web实时聊天(附源码)
- 团队城市未满足要求:MSBuildTools12.0_x86_Path 存在
- 使用 MSBuild.exe 在发布模式下构建 C# 解决方案
- 当我发布 Web 应用程序时,AfterPublish 脚本不运行
- 构建时 T4 转换的产品仅在下一个构建中使用
- ASP.NET Core Application (.NET Framework) for Windows x64 only error in project.assets.json
- 新的 .csproj 格式 - 如何将整个目录指定为“链接文件"到子目录?
- 如何将条件编译符号(DefineConstants)传递给 msbuild
- MSBuild 支持 Visual Studio 2017 RTM 中的 T4 模板
- NuGet 包还原找不到包,没有源
热点文章
团队城市未满足要求:MSBuildTools12.0_x86_Path 存在
0
使用 MSBuild.exe 在发布模式下构建 C# 解决方案
0
当我发布 Web 应用程序时,AfterPublish 脚本不运行
0
构建时 T4 转换的产品仅在下一个构建中使用
0
ASP.NET Core Application (.NET Framework) for Windows x64 only error in project.assets.json
0
新的 .csproj 格式 - 如何将整个目录指定为“链接文件"到子目录?
0
如何将条件编译符号(DefineConstants)传递给 msbuild
0
MSBuild 支持 Visual Studio 2017 RTM 中的 T4 模板
0
NuGet 包还原找不到包,没有源
0
使用 C# 6.0 功能运行 TFS 构建
0
