Before I saw @furic 's answer to create a list out of the keys, I did this. Thought someone might find it useful.
Item[] items = new Item[m_dict.Count];
m_dict.Values.CopyTo(items, 0);
foreach (Item item in items)
{
Destroy(item);
m_dict.remove(item);
}
↧