I have a private field in the class, which is a dictionary of dictionaries.
private readonly Dictionary<string, Dictionary<int, int>>
myDict = new Dictionary<string, Dictionary<int, int>>();
What is the best cleaning practice myDict? Do I need to quote all the values and call Clear for each, or is it enough if I just called Clear on myDict?
I am also looking for better performance.
source
share