导航

2010年3月24日

摘要: 阅读全文

posted @ 2010-03-24 01:56 忆龙2009 阅读(124) 评论(0) 推荐(0) 编辑

摘要: 以下C#代码,可以实现windows mobile防止程序重复运行: class Program{ /// <summary> /// 应用程序的主入口点。 /// </summary> [MTAThread] static void Main() { bool createdNew; Mutex mutex = new Mutex(true); createdNew = ... 阅读全文

posted @ 2010-03-24 01:50 忆龙2009 阅读(203) 评论(0) 推荐(0) 编辑