Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6598373
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:20:18+00:00 2026-05-25T18:20:18+00:00

I know its generally a big No-No to modify a collection that you are

  • 0

I know its generally a big No-No to modify a collection that you are iterating through but unfortunately i didn’t design the code that i’m trying to modify. All over the place the following is done:

for each log in Logs
   logs.Delete(log.LogId)
Next

Delete pretty much just deletes the log from the database and removes it from the collection. Previously the Logs object was using a Non-Generic collection. I changed it to use a Collection(Of Log) so i can LINQify the object. Now every time i call next/.MoveNext is called after the first delete the following error happens:
InvalidOperationException:
“Collection was modified; enumeration operation may not execute.”

I understand why i’m getting the error but i don’t understand why it never happened with the Non-Generic version. Is there anyway to get around this error? There really is no way i can take the time to change every place where the delete logs like this (codebase is large). Id like to just remove the code in the Delete function where it removes it from the current collection because i’m assuming no code does anything with the collection after its done but you know what happens when you assume.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T18:20:18+00:00Added an answer on May 25, 2026 at 6:20 pm

    Your problem in a nutshell:

            Collection<object> stuff = new Collection<object> { 1, 2, 3, 4 };
    
            foreach (var o in stuff)
                stuff.Remove(o); // causes exception
    

    Two solutions:

    1. Make a copy of the collection and iterate that instead.

          foreach (var o in stuff.ToArray())
              stuff.Remove(o); // does not cause exception
      
    2. Iterate the collection backwards.

          for (int i = stuff.Count - 1; i >= 0; i--)
              stuff.RemoveAt(i); // does not cause exception
      

      (This would be something like logs.Delete(logs[i].LogId);)

    Sorry about the C#, but the concepts are pretty clear.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know its impossible for 100% protection, but something high or that works for
I know that exceptions have a performance penalty, and that it's generally more efficient
I know that messaging nil is not an error, and generally it's not an
I know its possible to receive a dayClick event on Fullcalendar. But I would
Im newbie in C# and don't know its syntax. But I know a bit
Trying to load a file into python. It's a very big file (1.5Gb), but
I know it's generally a bad idea to do queries like this: SELECT *
I know its possible to accept a list of objects as a parameter thanks
I know its possible to use a wakelock to hold the screen, cpu, ect
I know its possible to open an app from mobile safari using custom URL

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.