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?
Clearmakes 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 usingforeach (byte key in taggings.Keys.ToList()). – Brian Mar 9 '11 at 14:51