gpt4 book ai didi

C# 从列表框中删除项目

转载 作者:可可西里 更新时间:2023-11-01 08:34:57 25 4
gpt4 key购买 nike

我有一个从 SQLDATA 拉取中填充的列表框,它拉下了一些我不想要的列,例如 OBJECT_dfj、OBJECT_daskd。关键是所有这些都与 OBJECT_ 在一起,有没有办法从列表框中删除它们?我无法更改我的 SQL 语句。

我试过这个:

 foreach (string item in listBox1.Items)
{
string removelistitem = "OBJECT";
if(item.Contains(removelistitem))
{
listBox1.Items.Remove(item);
}
}

但它给了我错误:

List that this enumerator is bound to has been modified. An enumerator can only be used if the list does not change.

最佳答案

你不能使用枚举器,你必须使用索引循环,从最后一项开始:

for (int n = listBox1.Items.Count - 1; n >= 0; --n)
{
string removelistitem = "OBJECT";
if (listBox1.Items[n].ToString().Contains(removelistitem))
{
listBox1.Items.RemoveAt(n);
}
}

关于C# 从列表框中删除项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2096489/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com