Exemple #1
0
        public static void Debug(String mensaje)
        {
            string fecha = DateTime.Now.ToString("dd/MM/yyyy-HH:mm:ss");
            string log   = fecha + ": " + mensaje + Environment.NewLine;

            IoHelper.Log(log);
        }
Exemple #2
0
 public static Configuracion getInstance()
 {
     if (instancia == null)
     {
         instancia = IoHelper.LeerConfiguracion();
     }
     return(instancia);
 }
Exemple #3
0
 public void Actualizar()
 {
     IoHelper.ActualizarConfiguracion();
 }