예제 #1
0
 public static void Set(SettingsRequisites key, string value)
 {
     CheckFile();
     _currentSettings[key] = value;
     UpdateFile();
 }
예제 #2
0
 public static string Get(SettingsRequisites key)
 {
     CheckFile();
     return(_currentSettings.TryGetValue(key, out var value) ? value : null);
 }