using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; using System.Threading; namespace IControls_ExcelVerify { static class Program { /// /// 해당 응용 프로그램의 주 진입점입니다. /// [STAThread] static void Main() { bool createdNew; Mutex dup = new Mutex(true, "IControls_ExcelVerify", out createdNew); // 프로그램 뮤텍스 if (createdNew) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new IControls_ExcelVerify()); dup.ReleaseMutex(); } else MessageBox.Show(_Text.ProgramCloseSame); } } }