sl@4: using System; sl@4: using System.Collections.Generic; sl@4: using System.Linq; sl@4: using System.Threading.Tasks; sl@4: using System.Windows.Forms; sl@4: sl@4: namespace IdwTest sl@4: { sl@4: static class Program sl@4: { sl@4: /// sl@4: /// The main entry point for the application. sl@4: /// sl@4: [STAThread] sl@4: static void Main() sl@4: { sl@4: Application.EnableVisualStyles(); sl@4: Application.SetCompatibleTextRenderingDefault(false); sl@4: Application.Run(new MainForm()); sl@4: } sl@4: } sl@4: sl@4: }