06 2011 档案
应用程序.exe文件系统只能打开一个客户端代码
摘要://Program中的Main方法static void Main() { bool runone; System.Threading.Mutex run = new System.Threading.Mutex(true, "WindowsFormsApplication6.exe", out runone); if (runone) { run.ReleaseMutex(); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Applicatio 阅读全文
posted @ 2011-06-13 17:30 xalyf