摘要: 阅读全文
posted @ 2013-03-16 11:00 Kenyep 阅读(3216) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2013-03-16 10:39 Kenyep 阅读(11811) 评论(1) 推荐(0) 编辑
摘要: Winform界面设计:放置一个TextBox控件(命名为:txtPath),两个按钮控件(一个btnSelect,一个btnStart),一个显示文件列表Label控件(lblFileList),还有一个重要的folderBrowserDialog1控件。 阅读全文
posted @ 2013-03-16 10:12 Kenyep 阅读(437) 评论(0) 推荐(0) 编辑
摘要: 1 //获取内网IP 2 private string GetInternalIP() 3 { 4 IPHostEntry host; 5 string localIP = "?"; 6 host = Dns.GetHostEntry(Dns.GetHostName()); 7 foreach (IPAddress ip in host.AddressList) 8 { 9 if (ip.AddressFamily.ToString() == "InterNetwork")10 {11 local... 阅读全文
posted @ 2013-03-16 09:47 Kenyep 阅读(17039) 评论(3) 推荐(2) 编辑