Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

C# modifying foreach variable

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


    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