C#笔记(17)程序只运行一个实例

Program类的Main()方法里

Boolean runone;
System.Threading.Mutex run = new System.Threading.Mutex(true, "single_test", out runone);
if (runone)
{
    //程序内容
}
else
{
    System.Environment.Exit(0);//退出程序
}

你可能感兴趣的:(c#)