C # ways to traverse collections and remove elements _c# tutorial

Source: Internet
Author: User

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.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.