Use the C # thread mechanism to run a single instance of an application

Source: Internet
Author: User

 

As long as the Main entry in your program is as follows, you can only have one program instance at a time when your program is running, such as Winamp. When it is running, if you try again, you will not run an instance.

The code is simple.

[STAThread]

Static VoidMain (String[] Args)

{

BoolIsExist;

 System. Threading. Mutex mutex =NewSystem. Threading. Mutex (True, "MyApp ",OutIsExist ); 

// Here, myApp is the program identifier. We recommend that you replace it with the physical path of your program. In this way, if this flag is in one operating system, it will not conflict with other programs.

If (isExist)Environment. Exit (1); // The instance already exists. Exit the program

}


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.