Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.
Hi all, please see this major site announcement: https://www.boards.ie/discussion/2058427594/boards-ie-2026

C# modifying foreach variable

  • 08-01-2013 11:25AM
    #1
    Registered Users, Registered Users 2 Posts: 7,547 ✭✭✭


    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