コード例 #1
0
ファイル: App.xaml.cs プロジェクト: ralex1975/cpp-proto-net
 private static void RunInReleaseMode()
 {
     AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException;
     try
     {
         HiFreBootsrapper bootstrapper = new HiFreBootsrapper();
         bootstrapper.Run();
     }
     catch (Exception ex)
     {
         HandleException(ex);
     }
 }
コード例 #2
0
ファイル: App.xaml.cs プロジェクト: ralex1975/cpp-proto-net
        private static void RunInDebugMode()
        {
            HiFreBootsrapper bootstrapper = new HiFreBootsrapper();

            bootstrapper.Run();
        }