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

            bootstrapper.Run();
        }