我开发了一个时钟显示IST
& EST
时间。我来自印度,因此我的系统时钟设置使用IST
设置。我想在时钟中显示EST
日光时间。如何显示EST
的夏令时?
答案 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)