如何检查c#.net中已经运行的exe?
程序是什么,当用户每次启动应用程序时,它都会检查实例是否已经在运行。如果它没有运行,它将启动它,否则它将专注于当前的应用程序。我已经尝试过单例应用程序的代码,但它给出了很多错误。它运行不正常。你能为我提供其他替代解决方案吗?
What is the procedure to know that when Everytime the user starts the application it will check if an instance is already running. If its not running it will launch it otherwise it will focus to the current one.i have already tried the code for singleton application but its giving lots of errors. its not running properly. can u provide me the othr alternative solution for this??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您应该使用
Mutex
类,如下所述:在控制台应用程序 C# 中实现单例的最佳方法?编辑: 我的代码中有以下内容:
You should use
Mutex
class, like explained here: Best way to implement singleton in a console application C#?EDIT: I have this in my code:
您可以使用命名的
Mutex
< /a>.You could used a named
Mutex
.单进程实例对象
在 C# 中创建单实例应用程序
Single Process Instance Object
Creating a Single Instance Application in C#
如果您使用后台工作程序,则使用互斥锁不适用。如果
backgroundWorker
很忙,它可以有多个实例。Using a mutex is not applicable if you're using a background worker. If the
backgroundWorker
is busy, it can have multiple instances.