Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

InvalidOperationException when removing items in a collection


Author: Alvin Bruney MVP

View products that this article applies to.

Summary

You receive an InvalidOperationException with the following error message: Collection was modified: enumeration operation may not execute.

↑ Back to the top


Symptoms

When you iterate a collection and remove items in the collection, you receive an InvalidOperationException with the following error message: Collection was modified: enumeration operation may not execute.

↑ Back to the top


Cause

Code iterating a collection cannot modify the collection because the run-time makes certain assumptions about the size of the collection.

↑ Back to the top


Resolution

you can work around the limitation by creating a new collection dynamically to hold the enumerated collection. Here is the complete code.

using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication
{
��� class Program
��� {
������� static void Main(string[] args)
������� {
����������� System.Collections.ArrayList arr = new System.Collections.ArrayList();
����������� arr.Add("1");
����������� arr.Add("2");
����������� arr.Add("3");

����������� /*This throws an exception
����������� foreach (string s in arr)
����������� {
��������������� arr.Remove(s);
����������� }
����������� */

����������� //where as this works�correctly
����������� Console.WriteLine(arr.Count);
����������� foreach (string s in new System.Collections.ArrayList(arr))
����������� {
��������������� arr.Remove(s);
����������� }
����������� Console.WriteLine(arr.Count);
����������� Console.ReadKey();
������� }
��� }
}

↑ Back to the top


More information

This link http://msdn2.microsoft.com/en-us/library/system.collections.ienumerator(vs.71).aspx�discusses the limitation in further detail. It is important to note that the code does not remove the restriction on iterating a collection. Instead, the code simply moves the restriction from one container (arr) to the other (ArrayList).

↑ Back to the top


Properties

COMMUNITY SOLUTIONS CONTENT DISCLAIMER
MICROSOFT CORPORATION AND/OR ITS RESPECTIVE SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, RELIABILITY, OR ACCURACY OF THE INFORMATION AND RELATED GRAPHICS CONTAINED HEREIN. ALL SUCH INFORMATION AND RELATED GRAPHICS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT AND/OR ITS RESPECTIVE SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION AND RELATED GRAPHICS, INCLUDING ALL IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, WORKMANLIKE EFFORT, TITLE AND NON-INFRINGEMENT. YOU SPECIFICALLY AGREE THAT IN NO EVENT SHALL MICROSOFT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY DIRECT, INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF USE, DATA OR PROFITS, ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OF OR INABILITY TO USE THE INFORMATION AND RELATED GRAPHICS CONTAINED HEREIN, WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, EVEN IF MICROSOFT OR ANY OF ITS SUPPLIERS HAS BEEN ADVISED OF THE POSSIBILITY OF DAMAGES.

↑ Back to the top


Community solutions content disclaimer

Microsoft corporation and/or its respective suppliers make no representations about the suitability, reliability, or accuracy of the information and related graphics contained herein. All such information and related graphics are provided "as is" without warranty of any kind. Microsoft and/or its respective suppliers hereby disclaim all warranties and conditions with regard to this information and related graphics, including all implied warranties and conditions of merchantability, fitness for a particular purpose, workmanlike effort, title and non-infringement. You specifically agree that in no event shall Microsoft and/or its suppliers be liable for any direct, indirect, punitive, incidental, special, consequential damages or any damages whatsoever including, without limitation, damages for loss of use, data or profits, arising out of or in any way connected with the use of or inability to use the information and related graphics contained herein, whether based on contract, tort, negligence, strict liability or otherwise, even if Microsoft or any of its suppliers has been advised of the possibility of damages.

↑ Back to the top


Keywords: KB555972, kbhowto, kbpubtypecca, kbpubmvp

↑ Back to the top

Article Info
Article ID : 555972
Revision : 1
Created on : 10/13/2007
Published on : 10/13/2007
Exists online : False
Views : 307