예제 #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);
        }