00001 using System; 00002 using System.Collections.Generic; 00003 using System.Windows.Forms; 00004 00005 namespace Editor 00006 { 00007 static class Program 00008 { 00012 [STAThread] 00013 static void Main() 00014 { 00015 Application.EnableVisualStyles(); 00016 Application.SetCompatibleTextRenderingDefault(false); 00017 00018 //try 00019 //{ 00020 Application.Run(new MainForm()); 00021 //} 00022 //catch (Exception ex) 00023 //{ 00024 // MessageBox.Show("This application has encountered a severe failure and is going to exit. Please send the below information to guillaume_randon@hotmail.com:\nEditor Version 0.5\n" + ex.Message + "\nStack:\n" + ex.StackTrace); 00025 //} 00026 //finally 00027 //{ 00028 // Application.Exit(); 00029 //} 00030 } 00031 } 00032 }
1.5.8