摘要:
阅读全文
摘要:
阅读全文
摘要:
Winform界面设计:放置一个TextBox控件(命名为:txtPath),两个按钮控件(一个btnSelect,一个btnStart),一个显示文件列表Label控件(lblFileList),还有一个重要的folderBrowserDialog1控件。 阅读全文
摘要:
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... 阅读全文