发布于 2020-02-27 14:58:30
找到接口:
public static List<TzdbZoneLocation> GetAllTimeZones()
{
return TzdbDateTimeZoneSource.Default
.ZoneLocations
.Where(x => x.CountryCode == "US")
.ToList();
}https://stackoverflow.com/questions/60427740
复制相似问题