Exemple #1
0
 /// <summary>
 /// Copies the values in the current object into the SettingsDictionary passed as the target
 /// </summary>
 /// <param name="target">The target to recieve the values from this SettingsDictionary</param>
 public void Clone(SettingsDictionary target)
 {
     foreach (string key in _orderedKeys)
     {
         target.AddSetting(key, GrabSetting(key));
     }
 }