using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace Thermo.Cam.Setup { internal static class Program { #region Private Methods /// /// The main entry point for the application. /// [STAThread] private static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); } #endregion Private Methods } }