2020
10-08
10-08
C#获取本地IP的四种方式示例详解
1.第一种方式采用System.Net.Dns的GetHostAddress的方式,具体请看代码:///<summary>///网络不通畅可以获取///不过能获取到具体的IP///</summary>///<returns></returns>publicstaticList<IPAddress>GetByGetHostAddresses(){try{IPAddress[]adds=Dns.GetHostAddresses(Dns.GetHostName());returnadds==null||adds.Length==0?newList<IPAddress>():adds.ToList<IPAddress>(...
继续阅读 >