일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- coding-test
- WPF
- windows10
- programmers
- Github
- nullable
- Process
- git
- log
- .net
- tls
- algorithm
- IValueConverter
- C#
- Visual Studio
- string
- Coding
- csharp
- windows
- logging
- commit
- dotNET
- ListView
- File
- 코딩테스트
- convert
- mysql
- Microsoft
- chashtag
- Binding
Archives
- Today
- Total
CHashtag
[C#] Mutex 생성, 해제하기 (중복실행방지) (Lock) 본문
반응형
// App.xaml.cs
// 프로그램 시작, 종료 지점에 해당 코드를 삽입하여도 무방합니다.
const string MUTEX_NAME = "SOME_UNIQUE_MUTEX_NAME";
Mutex mutex = null;
App()
{
bool isNew;
try
{
mutex = new Mutex(false, MUTEX_NAME, out isNew);
if (!isNew)
{
Application.Current.Shutdown();
mutex = null;
return;
}
}
catch (Exception ex)
{
Application.Current.Shutdown();
}
}
/// <summary>
/// 프로그램이 종료되기 전에 Mutex를 해제해주어야 한다.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void Application_Exit(object sender, ExitEventArgs e)
{
if (mutex != null)
{
mutex.ReleaseMutex();
}
}
<-- App.xaml -->
<Application x:Class="MutexTest.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:MutexTest" Exit="Application_Exit"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>
감사합니다.
반응형
'C#' 카테고리의 다른 글
[C#] 압축, 압축 풀기 with 비밀번호 (zip, unzip with password) (0) | 2021.09.29 |
---|---|
[C#] 폴더 크기 구하기 (Get Directory Size) (1) | 2021.07.01 |
[C#] CallerMemberName Attribute 사용법 (0) | 2021.06.30 |
[C#] [매크로] Low Level 키보드 입력 (Simulation) (2) | 2021.06.30 |
[C#] 파일 확장자로 mime-type 구하기(File Extension) (0) | 2021.05.24 |