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