Example #1
0
 public static void Set(string key, string value)
 {
     if (SettingsTable.Exists(key))
     {
         SettingsTable.Update(key, value);
     }
     else
     {
         SettingsTable.Insert(key, value);
     }
 }