摘要: static void MutexDemo2() { string assName = Assembly.GetEntryAssembly().FullName; bool createdNew; using (var mutex = new Mutex(false, assName, out createdNew)) { if (!createdNew) { Console.WriteLine( 阅读全文
posted @ 2019-11-11 13:33 FredGrit 阅读(259) 评论(0) 推荐(0) 编辑