Skip to content

Instantly share code, notes, and snippets.

View in-async's full-sized avatar

inasync in-async

View GitHub Profile
@in-async
in-async / ApplicationLock.cs
Last active August 14, 2020 03:44
アプリケーション単位の排他制御を行う .NET クラス。
using System;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Threading;
namespace InAsync.Threading {
/// <summary>
/// アプリケーション単位の排他制御を行うクラス。
/// </summary>