gpt4 book ai didi

c# - 如何按名称查找 TimeZoneInfo

转载 作者:行者123 更新时间:2023-11-30 13:57:02 26 4
gpt4 key购买 nike

我知道我们可以使用 id 查找时区信息

TimeZoneInfo timeZone2 = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time");

有什么我们可以用名字来获取的东西吗?

example: 
TimeZoneInfo timeZone2 = TimeZoneInfo.FindSystemTimeZoneByName("(UTC-12:00) International Date Line West");

没有像这样的内置方法。

最佳答案

您显示的名称是显示名称。一个简单的 linq 查询可以为您带来。

string displayName = "(UTC-12:00) International Date Line West";
var tz = TimeZoneInfo.GetSystemTimeZones()
.FirstOrDefault(x => x.DisplayName == displayName);

关于c# - 如何按名称查找 TimeZoneInfo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23423851/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com