如何检查c#.net中已经运行的exe?

发布于 2024-08-20 15:15:43 字数 119 浏览 5 评论 0原文

程序是什么,当用户每次启动应用程序时,它都会检查实例是否已经在运行。如果它没有运行,它将启动它,否则它将专注于当前的应用程序。我已经尝试过单例应用程序的代码,但它给出了很多错误。它运行不正常。你能为我提供其他替代解决方案吗?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

陌伤ぢ 2024-08-27 15:15:43

您应该使用 Mutex 类,如下所述:在控制台应用程序 C# 中实现单例的最佳方法?

编辑: 我的代码中有以下内容:

class Program
{
    public const string AppName = "...";
    private static readonly Mutex mutex = new Mutex(true, Program.AppName);

    public Program()
    {
        if (!mutex.WaitOne(TimeSpan.Zero, true))
            throw new ApplicationException("Another instance already running");
    }
}

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:

class Program
{
    public const string AppName = "...";
    private static readonly Mutex mutex = new Mutex(true, Program.AppName);

    public Program()
    {
        if (!mutex.WaitOne(TimeSpan.Zero, true))
            throw new ApplicationException("Another instance already running");
    }
}
神魇的王 2024-08-27 15:15:43

您可以使用命名的 Mutex< /a>.

命名的系统互斥体可见
整个操作系统,以及
可用于同步
流程的活动。你可以
创建一个 Mutex 对象来表示
通过使用命名系统互斥体
接受名称的构造函数。

You could used a named Mutex.

Named system mutexes are visible
throughout the operating system, and
can be used to synchronize the
activities of processes. You can
create a Mutex object that represents
a named system mutex by using a
constructor that accepts a name.

百合的盛世恋 2024-08-27 15:15:43

如果您使用后台工作程序,则使用互斥锁不适用。如果backgroundWorker很忙,它可以有多个实例。

Using a mutex is not applicable if you're using a background worker. If the backgroundWorker is busy, it can have multiple instances.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文