Get public/external IP address?

前端 未结 26 2309
鱼传尺愫
鱼传尺愫 2020-11-22 14:32

I cant seem to get or find information on finding my routers public IP? Is this because it cant be done this way and would have to get it from a website?

26条回答
  •  长情又很酷
    2020-11-22 14:45

    private static string GetPublicIpAddress()
    {
        using (var client = new WebClient())
        {
           return client.DownloadString("http://ifconfig.me").Replace("\n", "");
        }
    }
    

提交回复
热议问题