Exemplo n.º 1
0
 public DictionaryPreference(DictionaryPreference dict)
 {
     foreach (string key in dict.Keys)
     {
         this.Add(key, dict[key]);
     }
 }
Exemplo n.º 2
0
 public static DictionaryPreference Clone(DictionaryPreference mru)
 {
     return(new DictionaryPreference(mru));
 }