我正在尝试将转换时间转换为用户的时区,但我没有 Windows 时区字符串,例如“太平洋标准时间”。我所拥有的只是一个字符串偏移量,例如“-07:00”。看起来我需要创建一个时间跨度。是手动解析此字符串的唯一方法吗?似乎应该有一种方法可以使用字符串偏移量转换时间,但也许我遗漏了一些东西。
我有这个,但它需要时区。我正在尝试修改它以改用偏移量,但您可以看到为转换创建的时间跨度,我需要将我的偏移量设置为时间跨度。
static void Main(string[] args)
{
var currentTimeInPacificTime = ConvertUtcTimeToTimeZone(DateTime.UtcNow, "Pacific Standard Time");
//TimeSpan ts = new TimeSpan("-07:00");
Console.ReadKey();
}
static DateTimeOffset ConvertUtcTimeToTimeZone(DateTime dateTime, string toTimeZoneDesc)
{
if (dateTime.Kind != DateTimeKind.Utc) throw new Exception("dateTime needs to have Kind property set to Utc");
TimeSpan toUtcOffset = TimeZoneInfo.FindSystemTimeZoneById(toTimeZoneDesc).GetUtcOffset(dateTime);
var convertedTime = DateTime.SpecifyKind(dateTime.Add(toUtcOffset), DateTimeKind.Unspecified);
return new DateTimeOffset(convertedTime, toUtcOffset);
}