InvalidOperationException. This exception has occurred. It reports a "collection was modified" error in the program. We are trying to remove elements from a C# List.
With some code changes, we can fix the problem. It is important to know that the foreach-loop has some restrictions. We cannot change the underlying collection in while foreach is running.
First example. We see a program that can cause this exception. The example demonstrates a List and a foreach-loop that tries to remove an item, but raises an exception.
Detail This loop iterates over each item in the list. We call the Remove method, and it tries to modify the collection during the loop.
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
var list = new List<int>() { 10, 20, 30 };
// Try to remove an element in a foreach list.foreach (int value in list)
{
Console.WriteLine("ELEMENT: {0}", value);
list.Remove(value);
}
}
}ELEMENT: 10
Unhandled Exception: System.InvalidOperationException:
Collection was modified; enumeration operation may not execute.
at System.ThrowHelper. ThrowInvalidOperationException(ExceptionResource resource)
at System.Collections. Generic.List`1.Enumerator.MoveNextRare()
at System.Collections. Generic.List`1.Enumerator.MoveNext()
at Program.Main()...
Notes, Message. Consider the Message property. The Message on the second line is the secret we need to know. The message says "Collection was modified" and that the enumeration won't work.
Note We are changing the elements in the collection while looping over it with foreach.
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
var list = new List<int>() { 10, 20, 30 };
// Remove elements from the list in a for-loop.for (int i = 0; i < list.Count; i++)
{
int value = list[i];
// Remove if value is 20.
if (value == 20)
{
list.Remove(value);
}
}
// Write list after element removed.foreach (int value in list)
{
Console.WriteLine("ELEMENT: {0}", value);
}
}
}ELEMENT: 10
ELEMENT: 30
Notes, foreach. Foreach queries the enumerator and asks for the next element. In our example, the enumerator's state becomes invalid when we remove the item.
Info An enumerator has to store some data indicating its current position. This is how the foreach loop is implemented.
Example 2. We see code that removes list elements, without raising an exception. We can call Remove() on the List in a for-loop (with indexes).
Here This program removes all elements in the list where the value is equal to 20.
A summary. An InvalidOperationException is not useful. But the "collection was modified" error message can be informative. RemoveAll can be used to safely remove items from a List.
And with a for-loop, we can remove elements by their indexes. RemoveAt can be used. Alternatively, another new list of elements can be created from the elements we wish to keep.
Dot Net Perls is a collection of tested code examples. Pages are continually updated to stay current, with code correctness a top priority.
Sam Allen is passionate about computer languages. In the past, his work has been recommended by Apple and Microsoft and he has studied computers at a selective university in the United States.
This page was last updated on Feb 19, 2023 (edit).