在c#中获取时区列表
可能的重复:
如何枚举 .NET 中的所有时区?
如何使用 C# 获取时区列表? 我想要一个像 Windows 那样的列表。
Possible Duplicate:
How do I enumerate all time zones in .NET?
How can I get the list of time zones with c#?
I want a list like the one windows has.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
GetSystemTimeZones()。
请记住,这会返回 ReadOnlyCollection(T)
您还可以了解如何使用这些时区填充列表此处。
GetSystemTimeZones().
Keep in mind that this returns a ReadOnlyCollection(T)
You can also learn how to populate a list with those timezones here.
您可以使用
TimeZoneInfo.GetSystemTimeZones()
。You can use
TimeZoneInfo.GetSystemTimeZones()
.