如何检测EST时间的夏令时?

时间:2014-03-19 11:27:53

标签: .net vb.net timezone

我开发了一个时钟显示IST& EST时间。我来自印度,因此我的系统时钟设置使用IST设置。我想在时钟中显示EST日光时间。如何显示EST的夏令时?

1 个答案:

答案 0 :(得分:0)

你可以像这样使用FindSystemTimeZoneById方法:

    Dim istNow = System.TimeZoneInfo.ConvertTime(Now, TimeZoneInfo.FindSystemTimeZoneById("India Standard Time"))
    Dim estNow = System.TimeZoneInfo.ConvertTime(Now, TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time"))
    Debug.WriteLine(istNow.ToString)
    Debug.WriteLine(estNow.ToString)