zoukankan      html  css  js  c++  java
  • C# Mutex to make sure only one unique application instance started

    
    
    static void MutexDemo2()
            {
                string assName = Assembly.GetEntryAssembly().FullName;
                bool createdNew;
                using (var mutex = new Mutex(false, assName, out createdNew))
                {
                    if (!createdNew)
                    {
                        Console.WriteLine("The app in running!");
                        Console.ReadLine();
                    }
                    else
                    {
                        Console.WriteLine("Welcome!");
                        Console.ReadLine();
                    }
                }
            }
    
    
    
    using System;
    using System.Threading.Tasks;
    using System.Reflection;
    using System.Threading;
    using System.Windows.Forms;
    
     static void Main(string[] args)
            {
                MutexDemoBool();
                Console.ReadLine();
            }
    
            static void MutexDemo()
            {
                string assemblyName = Assembly.GetEntryAssembly().FullName;             
                var mutex = new Mutex(false, assemblyName);
    
                if (!mutex.WaitOne(0, true))
                {
                    MessageBox.Show("Unable to run multiple instances of this program.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
                else
                {
                    Console.WriteLine("Welcome");
                    Console.ReadLine();
                }            
            }
    
            static void MutexDemoBool()
            {
                string assemblyName = Assembly.GetEntryAssembly().FullName;
                bool isFirstInstance;
                var mutex = new Mutex(false, assemblyName,out isFirstInstance);
                if(!isFirstInstance)
                {
                    MessageBox.Show("Unable to run multiple instances of this program.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
                else
                {
                    Console.WriteLine("Welcome");
                    Console.ReadLine();
                }           
            }
  • 相关阅读:
    ios15--综合小例子
    ios ionic 装平台 笔记
    ios14--购物车优化2
    ios13--购物车优化
    ios--plist
    ios12--简易购物车
    ios11--UIButton
    Android Json的使用(2) 使用Jackson解析和生成json
    快速Android开发系列网络篇之Retrofit
    关于XUtils框架细解
  • 原文地址:https://www.cnblogs.com/Fred1987/p/11834297.html
Copyright © 2011-2022 走看看