.net获取本机公网IP代码
摘要:
类的代码如下: 1 using System; 2 using System.Net; 3 using System.Text.RegularExpressions; 4 5 namespace Keleyi.Com 6 { 7 public class GetInternetIP 8 { 9 public static string GetIP()10 {11 using (var webClient = new WebClient())12 {13 try14 ... 阅读全文
posted @ 2014-01-04 21:37 柔城 阅读(2327) 评论(0) 推荐(0) 编辑