Beispiel #1
0
 public static string Read(PrefsBD preferencia)
 {
     if (_prefs == null)
     {
         throw new Exception("No se ha inicializado el administrador de preferencias");
     }
     else
     {
         return((string)_prefs._bd[preferencia]);
     }
 }
Beispiel #2
0
 public static void Update(PrefsBD preferencia, object valor)
 {
     if (_prefs == null)
     {
         throw new Exception("No se ha inicializado el administrador de preferencias");
     }
     else
     {
         _prefs._bd[preferencia] = valor;
     }
 }