Beispiel #1
0
 public static void SetIsolatedStorage(string key, string value)
 {
     IsolatedStoreageHelper.Write(key, value);
 }
Beispiel #2
0
 public static string GetIsolatedStorage(string key)
 {
     return(IsolatedStoreageHelper.Read(key) as string);
 }