本文介绍了如何通过选择国家来获得国家的时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
我希望根据国家名称获取该国的当前时间。
我做谷歌搜索但没有得到相应的结果。
如果您能提供解决方案或任何网络服务地址,请帮助我。 />
谢谢
Hi All,
I want to get current time of the country on the basis of passing country name.
I did googling but not got respective result.
Please help me , if you can provide a solution or any address of a web service.
Thanks
推荐答案
DateTime now = DateTime.Now;
DateTime usaEST = TimeZoneInfo.ConvertTime(now, TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"));
Console.WriteLine(usaEST);
这篇关于如何通过选择国家来获得国家的时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!