Exemplo n.º 1
0
 public void SaveValue(PreferenceType preferenceType, string value)
 {
     Preferences.Set(preferenceType.ToString(), value);
 }
Exemplo n.º 2
0
 public string GetValue(PreferenceType key)
 {
     return(Preferences.Get(key.ToString(), string.Empty));
 }