首页 > 开发 > 综合 > 正文

确保只有一个程序实例运行(C#)之解决方案

2024-07-21 02:27:53
字体:
来源:转载
供稿:网友
转帖自http://www.yesky.com/20030407/1661941.shtml

如何确保在c#中只有一个程序(实例)运行?

  解答:主要应用system.diagnostics名字空间中的process类来实现,思路,我们在运行程序前,查找进程中是否有同名的进程,同时运行位置也相同程,如是没有运行该程序,如果有,就将同名的同位置的程序窗口置前.
主要代码:


[c#]
public static process runninginstance()
{
process current = process.getcurrentprocess();
process[] processes = process.getprocessesbyname (current.processname);
//查找相同名称的进程
foreach (process process in processes)
{
//忽略当前进程
if (process.id != current.id)
{
//确认相同进程的程序运行位置是否一样.
if (assembly.getexecutingassembly().location.replace("/", "//") == current.mainmodule.filename)
{
//return the other process instance.
return process;
}
}
}
//no other instance was found, return null.
return null;



注册会员,创建你的web开发资料库,
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表