Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I have a Dictionary<string, bool> and all I want to do is iterate over it and set all values to false in the dictionary. What is the easiest way to do that?

I tried this:

foreach (string key in parameterDictionary.Keys)
    parameterDictionary[key] = false;

However I get the error: "Collection was modified; enumeration operation may not execute."

Is there a better way to do this?

share|improve this question

1 Answer

up vote 8 down vote accepted

Just change the your enumeration source.

foreach (string key in parameterDictionary.Keys.ToList())
  parameterDictionary[key] = false;
share|improve this answer
Gah, it's always something so simple. Duh; it must be late. Thank you! Will accept in 12 minutes when I am able :) – Alex Ford May 27 '11 at 4:23
Unfortunately, this is not safe to do if keys are being added by a background thread. – Rick Sladkey May 27 '11 at 4:26
@Rick, that is correct however this is a web application and I'm positive there are no background threads. Thanks though :) +1 – Alex Ford May 27 '11 at 4:29
1  
+1 @David: I stand corrected. The original error was not due to threading but iterating while modifying, all in a single thread. Your solution fixes the problem correctly in the OP's situation. – Rick Sladkey May 27 '11 at 4:37

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.