This article illustrates how C # iterates through collections and removes elements. Share to everyone for your reference, specific as follows:
If you use foreach, it can cause an exception problem when the set that is traversed is changed.
At this point, using the for loop can effectively solve the problem.
for (int i=0;i<list.count;i++)
{
if (condition is true)
{
list.remove (list[i]);
i--
}
}
Alternatively, store the object you want to delete with another list collection.
List<t> newlists=new list<t> ();
foreach (T-T in List)
{
lists.add (t);
}
foreach (T t in newlists)
{
list.remove (t);
}
Read more about C # Interested readers can view the site topics: "C # traversal algorithm and Skills summary", "C # Design Thread usage Tips", "C # Operation Excel Skills Summary", "C # XML file Operation Tips Summary", "C # Common control usage Tutorial", " WinForm Control Usage Summary, C # tutorial on data structure and algorithms, C # array operation techniques Summary, and C # Introduction to object-oriented Programming
I hope this article will help you with C # programming.