Esempio n. 1
0
 private static void RunInReleaseMode()
 {
     AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException;
     try
     {
         EarthquakeMonitorBootstrapper bootstrapper = new EarthquakeMonitorBootstrapper();
         bootstrapper.Run();
     }
     catch (Exception ex)
     {
         HandleException(ex);
     }
 }
Esempio n. 2
0
        private static void RunInDebugMode()
        {
            EarthquakeMonitorBootstrapper bootstrapper = new EarthquakeMonitorBootstrapper();

            bootstrapper.Run();
        }