K3

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

2006年9月26日

摘要: static protected internal long CountFolderLength(string FolderPath) { long folder_length = 0; System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(FolderPath); ... 阅读全文
posted @ 2006-09-26 15:10 K3 阅读(311) 评论(0) 推荐(0) 编辑

摘要: static void Main() { Mutex mt=new Mutex(true,Application.ProductName); if(mt.WaitOne(0,false)) Application.Run(new Form()); else Application.Exit();} 阅读全文
posted @ 2006-09-26 14:26 K3 阅读(196) 评论(0) 推荐(0) 编辑