当前位置: 移动技术网 > IT编程>开发语言>c# > C#使用Mutex简单实现程序单实例运行的方法

C#使用Mutex简单实现程序单实例运行的方法

2019年07月18日  | 移动技术网IT编程  | 我要评论

本文实例讲述了c#使用mutex简单实现程序单实例运行的方法。分享给大家供大家参考。具体如下:

[stathread] static void main() {
 bool isapprunning = false;
 system.threading.mutex mutex = new system.threading.mutex(true,system.diagnostics.process.getcurrentprocess().processname,out isapprunning);
 if (!isapprunning) {
  messagebox.show("本程序已经在运行了,请不要重复运行!");
  environment.exit(1);
 }
 else
 {
  application.enablevisualstyles();
  application.setcompatibletextrenderingdefault(false);
  application.run(new form1());
 }
}

希望本文所述对大家的c#程序设计有所帮助。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网