示例#1
0
 private static void RunInReleaseMode()
 {
     AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException;
     try
     {
         RinaBootstrapper bootstrapper = new RinaBootstrapper();
         bootstrapper.Run();
     }
     catch (Exception ex)
     {
         HandleException(ex);
     }
 }
示例#2
0
 private static void RunInReleaseMode()
 {
     AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException;
     try
     {
         RinaBootstrapper bootstrapper = new RinaBootstrapper();
         bootstrapper.Run();
     }
     catch (Exception ex)
     {
         HandleException(ex);
     }
 }
示例#3
0
        private static void RunInDebugMode()
        {
            RinaBootstrapper bootstrapper = new RinaBootstrapper();

            bootstrapper.Run();
        }
示例#4
0
 private static void RunInDebugMode()
 {
     RinaBootstrapper bootstrapper = new RinaBootstrapper();
     bootstrapper.Run();
 }