标签:style blog color os for div
List<string> ipList = new List<string>(); foreach (IPAddress _IPAddress in Dns.GetHostEntry(Dns.GetHostName()).AddressList) { if (_IPAddress.AddressFamily.ToString() == "InterNetwork") { ipList.Add(_IPAddress.ToString()); } }
标签:style blog color os for div
原文地址:http://www.cnblogs.com/gaobing/p/3811974.html