Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use the following code to remove all elements from a dictionary:

internal static void RemoveAllSourceFiles()
        {
            foreach (byte key in taggings.Keys)
            {
                taggings.Remove(key);
            }
        }

But unfortunately this isn't working because an InvalidOperationException is thrown. I know this is because the collection is modified while iterating over it, but how can I change that?

share|improve this question
1  
Note: While in this specific case Clear makes much more sense, in the general case you can solve this problem by iterating over a copy of the list of keys, e.g. by using foreach (byte key in taggings.Keys.ToList()). – Brian Mar 9 '11 at 14:51

5 Answers

up vote 16 down vote accepted

A much simpler (and much more efficient) approach:

taggings.Clear();

and yes, the error is because changing the data deliberately breaks iterators.

share|improve this answer

Try using the Clear method instead.

internal static void RemoveAllSourceFiles()
        {
           taggings.Clear();
        }

Update: And as Marc pointed out, you cannot continue iterating over a collection while you modify it because the iterator is irrecoverably invalidated. Please read the answer to this SO question for details.

Why does enumerating through a collection throw an exception but looping through its items does not

share|improve this answer
5  
more accurately, you can't continue iterating it after modifying it; subtle difference, maybe... but you very much can modify the collection. – Marc Gravell Mar 9 '11 at 7:27
2  
Thank you Marc for pointing it out. Yes, subtle but important difference. – Unmesh Kondolikar Mar 9 '11 at 7:32

To do what you want to do you are going to need to iterate through the keys in reverse, that way you do not modify the array in the order it is trying to return to you.

Either that or use .Clear()

share|improve this answer

As said, the .NET default enumerator doesn't support collection changes while enumerating. In your case use Clear.

If you want better control over deletion, use linq:

var deletionList = (from tag in taggings where <where clause> select tag.Key).ToArray();
foreach(var key in deletionList)
{
   taggings.Remove(key);
}

The ToArray() extension method will enumerate the LINQ query, and instantiate an array storing the results. This array can be safely enumerated later to delete the contained items in the source dictionary.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.