Ejemplo n.º 1
0
 private void set(RepositoryConfig rc, string key, bool currentValue, bool defaultValue)
 {
     if (defaultValue == currentValue)
         unset(rc, key);
     else
         rc.SetBoolean(SECTION, Name, key, currentValue);
 }