2014-03-19 83 views
-2

我開發了一個時鐘,它顯示了IST & EST時間。我來自印度,所以我的系統時鐘設置使用IST設置。我想在時鐘中顯示EST日光時間。我如何顯示EST的夏時制時間?如何檢測EST時間的夏令時?

回答

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)