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

C# modifying foreach variable

Options
  • 08-01-2013 12:25pm
    #1
    Registered Users Posts: 7,501 ✭✭✭


    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