获取当前国家/地区的国家/地区名称和时间戳

时间:2015-10-01 13:01:34

标签: c# wpf

我正在制作WPF应用程序。如何让使用我的应用程序国家/地区名称和时间戳的人员。我不知道应该怎么做,我猜我们需要用户的IP地址?

1 个答案:

答案 0 :(得分:1)

String CountryShortCode=GetCountry();

And Method就是这样

 static public string GetCountry()
    {
        return new WebClient().DownloadString("http://api.hostip.info/country.php");
    }

然后根据ThatCountry <{1}}使用TimeZone设置CountryShortCode

此链接正常:http://www.aspsnippets.com/Articles/How-to-get-Country-Name-from-IP-Address-in-ASPNet-using-C-and-VBNet.aspx