How do I loop through items in a list box and then remove those item?(如何遍历列表框中的项目,然后删除这些项目?)
问题描述
我在尝试遍历列表框然后删除项目时遇到以下错误.
I'm getting the error below when trying to loop through a listbox and then remove the item.
此枚举器绑定的列表已被修改.枚举器只能在列表不变的情况下使用.
List that this enumerator is bound to has been modified. An enumerator can only be used if the list does not change.
foreach (string s in listBox1.Items)
{
MessageBox.Show(s);
//do stuff with (s);
listBox1.Items.Remove(s);
}
如何删除项目并仍然循环浏览内容?
How can I remove the item and still loop through the contents?
推荐答案
要删除所有项目吗?如果是这样,请先执行 foreach
,然后使用 Items.Clear()
将它们全部删除.
Do you want to remove all items? If so, do the foreach
first, then just use Items.Clear()
to remove all of them afterwards.
否则,可能会被索引器向后循环:
Otherwise, perhaps loop backwards by indexer:
listBox1.BeginUpdate();
try {
for(int i = listBox1.Items.Count - 1; i >= 0 ; i--) {
// do with listBox1.Items[i]
listBox1.Items.RemoveAt(i);
}
} finally {
listBox1.EndUpdate();
}
这篇关于如何遍历列表框中的项目,然后删除这些项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何遍历列表框中的项目,然后删除这些项目?
基础教程推荐
- 将 XML 转换为通用列表 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 如何激活MC67中的红灯 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01