コード例 #1
0
        static void Main()
        {
            // TODO: Handle unhandled exceptions

            Puzzler f = new Puzzler();

            Application.Run(f);
        }
コード例 #2
0
        static void Main()
        {
            BootstrapEnterpriseLibrary();

            Application.ThreadException +=
                Application_ThreadException;
            AppDomain.CurrentDomain.UnhandledException +=
                CurrentDomain_UnhandledException;

            Puzzler f = new Puzzler();

            Application.Run(f);
        }
コード例 #3
0
        static void Main()
        {
            // Handle unhandled exceptions
            Application.ThreadException +=
                new ThreadExceptionEventHandler(Application_ThreadException);

            AppDomain.CurrentDomain.UnhandledException +=
                new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);

            Puzzler f = new Puzzler();

            Application.Run(f);
        }
コード例 #4
0
ファイル: Startup.cs プロジェクト: janeth182/ISIL
        public void Run()
        {
            Puzzler f = new Puzzler();

            Application.Run(f);
        }