示例#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);
        }