I have to copy one dictionary, work with that copy and return to the original one.
What seems to happen is that the orignal dictionary is modified when I do some work on the copied one.
Here is my code :
dmodified_profile = new SortedDictionary<int,SortedDictionary<string,List<string>>>(d_profile);
I don't know why d_profile which is the original one could be modified if my modifications are done on the dmodified_profile dictionary ?
Thanks