using System; using System.Collections.Generic; using System.Windows.Forms; namespace GNAT { static class Program { /// /// The main entry point for the application. /// /// public static GNAT mainForm; [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); mainForm = new GNAT(); Application.Run(mainForm); } } }