将UTC日期时间到另一个时区 [英] Convert UTC DateTime to another Time Zone

查看:178
本文介绍了将UTC日期时间到另一个时区的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个UTC DateTime值从数据库中的记录来了。我也有用户指定的时区(的TimeZoneInfo的一个实例)。如何转换的UTC日期时间到用户的本地时区?另外,我怎么判断用户指定的时区目前观察DST?我使用.NET 3.5。

I have a UTC DateTime value coming from a database record. I also have a user-specified time zone (an instance of TimeZoneInfo). How do I convert that UTC DateTime to the user's local time zone? Also, how do I determine if the user-specified time zone is currently observing DST? I'm using .NET 3.5.

谢谢,
马克

推荐答案

有一个看的DateTimeOffset 结构:

// user-specified time zone
TimeZoneInfo southPole =
    TimeZoneInfo.FindSystemTimeZoneById("Antarctica/South Pole Standard Time");

// an UTC DateTime
DateTime utcTime = new DateTime(2007, 07, 12, 06, 32, 00, DateTimeKind.Utc);

// DateTime with offset
DateTimeOffset dateAndOffset =
    new DateTimeOffset(utcTime, southPole.GetUtcOffset(utcTime));

Console.WriteLine(dateAndOffset);

有关DST看到 TimeZoneInfo.IsDaylightSavingTime 方法。

bool isDst = southpole.IsDaylightSavingTime(DateTime.UtcNow);

这篇关于将UTC日期时间到另一个时区的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆