Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all, we have some important news to share. Please follow the link here to find out more!

https://www.boards.ie/discussion/2058419143/important-news/p1?new=1

C# modifying foreach variable

  • 08-01-2013 12:25PM
    #1
    Registered Users, Registered Users 2 Posts: 7,540 ✭✭✭


    I'm writing something at the moment which involves some sorting, removal and addition to multiple lists.

    My current logic requires me to modify the list im looping through which is obviously going to cause me problems.

    Simplified Example:
    foreach(string s in mystringList)
    {
        if(a==b)
            mystringList.Add("newstring");
    
        if(c==d)
            mystringList.Remove(s);
    }
    

    Obviously this is going to cause an exception when it attempts to go to the next item in the list.
    Is there a way to tell the loop to reset and begin again?


Comments

Advertisement