C#自动获取本机外网ip

public static string GetIP()
        {
            using (var webClient = new WebClient())
            {
               try{
                    webClient.Credentials = CredentialCache.DefaultCredentials;
                    byte[] pageDate = webClient.DownloadData("http://pv.sohu.com/cityjson?ie=utf-8");
                    String ip = Encoding.UTF8.GetString(pageDate);
                    webClient.Dispose();

                    Match rebool = Regex.Match(ip, @"\d{2,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}");
                    return rebool.Value;
               }
               catch (Exception e)
               {
                   return "";
               }

            }
        }

你可能感兴趣的:(C#自动获取本机外网ip)