-
[C#]중복실행방지 예제개발 2020. 12. 23. 17:31728x90
System.Diagnostics.Process[] processes = null; string strCurrentProcess = System.Diagnostics.Process.GetCurrentProcess().ProcessName.ToUpper(); processes = System.Diagnostics.Process.GetProcessesByName(strCurrentProcess); if(processes.Length > 1) { MessageBox.Show(string.Format("'{0}' 프로그램이 이미 실행 중입니다.", System.Diagnostics.Process.GetCurrentProcess().ProcessName)); return; }
'개발' 카테고리의 다른 글
[OAuth2.0]OAuth2.0를 구성하고 있는 주요 4가지 객체 (0) 2021.01.09 [TensorFlow.js]참고내용 (0) 2021.01.09 [리눅스] 권한 압축 (0) 2020.12.14 [PHP] 브라우저 체크 (0) 2020.12.13 [weblogic]please increase the size of the pool and retry.. (0) 2020.12.10