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