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