Ejemplo n.º 1
0
 public string GetValue(string key)
 {
     return(CommonHelpers.BlobGetValue(fileContent, key));
 }
Ejemplo n.º 2
0
 public static string GeneralGetValue(string key)
 {
     InitializeGeneralDatastore();
     return(CommonHelpers.BlobGetValue(generalFileContent, key));
 }
Ejemplo n.º 3
0
 public void SetValue(string key, string value)
 {
     fileContent = CommonHelpers.BlobSetValue(fileContent, key, value);
     Save();
 }
Ejemplo n.º 4
0
 public static void GeneralSetValue(string key, string value)
 {
     InitializeGeneralDatastore();
     generalFileContent = CommonHelpers.BlobSetValue(generalFileContent, key, value);
     GeneralSave();
 }