使用VB.net在紧凑框架中设置时区

时间:2016-06-27 17:01:26

标签: vb.net timezone compact-framework opennetcf

我正在尝试设置应该在.net紧凑框架中运行的应用程序的时区,并且我有点麻烦以使其正确。

我想将它设置为GMT标准时间,但由于某些原因我不断获得蒙罗维亚,Reyqjavik时区:

这是我的代码(我使用的是Opennet类):

Dim TZC As New TimeZoneCollection

TZC.Initialize(0)

For Each tzi As TimeZoneInformation In TZC

    If tzi.StandardName = "GMT Standard Time" Then
        Application.DoEvents()
        DateTimeHelper.SetTimeZoneInformation(tzi)
        Exit For
    End If

Next

出于某种原因,它一直将它设置为蒙罗维亚而不是伦敦时区

有人可以帮忙吗?谢谢!

0 个答案:

没有答案