Example #1
0
 public static int GetInt(string key, int defaultValue = 0)
 {
     return(Prefs.GetInt(key, defaultValue));
 }
Example #2
0
 public static bool GetBool(string key, bool defaultValue = false)
 {
     return(Prefs.GetInt(key, defaultValue ? 1 : 0) > 0);
 }