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]); } }
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; } }