0
我在山區標準時間從我的db獲得時間值。我想知道如何最準確地將這些值轉換爲用戶的時區。在VB.NET中如何將MST時區值轉換爲另一個時區?
我有這樣的功能(在格式和在MST一個時間的流逝):
Dim localZone As TimeZone = TimeZone.CurrentTimeZone
If localZone Is Nothing Or localZone.StandardName = "Mountain Standard Time" Then
Return DateTimeInMST.ToString(format) & " MST"
Else
Return (Return Value here in the user's timezone.)