I want to let users iterate through my dictionary without modifying it.
I considertwo solutions:
1.ReadOnlyDictionary -- is there an implementation of that available?
2.Copy the entire dictionary -- what is the most efficient way to copy it ?
Thanks