Example #1
0
 public void Set(int value)
 {
     Debug.Assert(_Default is int);
     Settings.Set(_Root, _Path, _Name, value);
 }
Example #2
0
 public void Set(string value)
 {
     Debug.Assert(_Default is string);
     Settings.Set(_Root, _Path, _Name, value);
 }
Example #3
0
 public void Set(bool value)
 {
     Debug.Assert(_Default is bool);
     Settings.Set(_Root, _Path, _Name, value);
 }