博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

单例实现方法

Posted on 2017-05-16 14:20  preface小贝  阅读(115)  评论(0编辑  收藏  举报

bool create;
using (Mutex mu = new Mutex(true, Application.ProductName, out create))
{
if (create)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
}
else
{
MessageBox.Show("程序已经运行!");
}
}