Main 함수입니다
응용해보세요
[STAThread]
static void Main()
{
Mutex m_hMutex = new Mutex(true, "이름는 아무거나", out bool flagMutex);
if (flagMutex)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
m_hMutex.ReleaseMutex();
}
else
{
MessageBox.Show("중복 안됨");
}
}
'C# Programming' 카테고리의 다른 글
C# DataGridView 열 추가된후 열 선택되어있는거 해제하기 (0) | 2018.10.25 |
---|---|
C# 텔레그렘 봇 (0) | 2018.07.13 |
C# datagridview 에 바인딩할 때 컬럼이름 재설정하기 (0) | 2018.07.04 |
C# 이벤트 (0) | 2018.04.05 |
C# 현재 디렉토리 경로 가져오기 (0) | 2018.04.04 |