using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace KHSCALE_TP { internal static class Program { static public bool m_ThreadRun = true; /// /// 해당 애플리케이션의 주 진입점입니다. /// [STAThread] static void Main() { U3Config config = new U3Config(); U3Util.ErrorLog("프로그램 시작"); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new FormScale()); m_ThreadRun = false; U3Util.ErrorLog("프로그램 종료"); } } }