Ejemplo n.º 1
0
 public void Default(string file, string key, string value)
 {
     var p = new PropertiesFile(file);
     if (p.Get(key) == null)
     {
         p.Set(key, value);
         p.Save(file);
     }
 }
Ejemplo n.º 2
0
 public void Set(string file, string key, string value)
 {
     var p = new PropertiesFile(file);
     p.Set(key, value);
     p.Save(file);
 }
Ejemplo n.º 3
0
 public void Unset(string file, string key)
 {
     var p = new PropertiesFile(file);
     p.Unset(key);
     p.Save(file);
 }
Ejemplo n.º 4
0
 public string Get(string file, string key)
 {
     var p = new PropertiesFile(file);
     return p.Get(key);
 }