在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
var preInstance = Process.GetProcesses().FirstOrDefault(p => { try { if (p.Id != Process.GetCurrentProcess().Id && p.MainModule != null && p.MainModule.FileName.ToLower() == Assembly.GetExecutingAssembly().Location.ToLower()) return true; return false; } catch { return false; } }); if (preInstance != null) { MessageBox.Show("程序已在运行!"); return; }
|
请发表评论