本文介绍了如何遍历列表框中的项目,然后删除这些项目?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
我在尝试遍历列表框然后删除项目时遇到以下错误.
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();
}
这篇关于如何遍历列表框中的项目,然后删除这些项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
The End


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)