public static int Main(string[] args) { try { System.Windows.Forms.Application.EnableVisualStyles(); System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false); if (MonoCheck.IsMonoRuntime) { Console.WriteLine("Running on mono, some features will be disabled."); } IDEApplication app = new IDEApplication(); return app.Main(args); } catch(Exception ex) { return ExceptionHandler.DumpException(ex); } }
public IDEApplication() { Instance = this; }