标签: WinForm

1 篇文章

C# 单例应用
using System.Reflection; using System.Threading; public enum MutexScope { Local, Global } public static class SingletonApp { private static Mutex? mutex; public static bool Is…