本文介绍了TimeZoneInfo类不返回正确的信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嘿,伙计,我使用timezoneinfo类返回当前系统的timezoneinfo,这是我的代码

hey guyz i have used timezoneinfo class to return the timezoneinfo of current system here is my code

string t = TimeZoneInfo.Local.Id;
string displayname = TimeZoneInfo.Local.DisplayName;


第一次显示我正确,但是当我从时钟更改时区时,它仍然显示旧时区,任何机构都可以帮助我吗?


it displays me correct at the first time but when i change my timezone from clock it still shows me old timezone can any body plz help me out?

推荐答案


这篇关于TimeZoneInfo类不返回正确的信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 12:41