TimeZoneInfo.FindSystemTimeZoneById("Tokyo Standard Time") : TimeZoneInfo « Date Time « VB.Net






TimeZoneInfo.FindSystemTimeZoneById("Tokyo Standard Time")

 

Module Example
   Public Sub Main()
        Dim thisTime As Date = Date.Now

        Dim tst As TimeZoneInfo = TimeZoneInfo.FindSystemTimeZoneById("Tokyo Standard Time")
        Dim tstTime As Date = TimeZoneInfo.ConvertTime(thisTime, TimeZoneInfo.Local, tst)      
        Console.WriteLine("Time in {0} zone: {1}", IIf(TimeZoneInfo.Local.IsDaylightSavingTime(tstTime), _
                          tst.DaylightName, tst.StandardName), tstTime)
        Console.WriteLine("   UTC Time: {0}", TimeZoneInfo.ConvertTimeToUtc(tstTime, tst))

   End Sub
End Module

   
  








Related examples in the same category

1.TimeZoneInfo.BaseUtcOffset gets the time difference between the current time zone's standard time and Coordinated Universal Time (UTC).
2.TimeZoneInfo.ConvertTime converts a time to the time in a particular time zone.
3.TimeZoneInfo.ConvertTimeToUtc
4.TimeZoneInfo.DaylightName
5.TimeZoneInfo.DisplayName
6.TimeZoneInfo.Equals
7.TimeZoneInfo.IsDaylightSavingTime
8.Gets a TimeZoneInfo object that represents the local time zone.
9.Gets a TimeZoneInfo object that represents the Coordinated Universal Time (UTC) zone.
10.Display the names for standard time and daylight saving time for the local time zone
11.Display the current date and time and show if they occur in daylight saving time
12.Get the current Coordinated Universal Time (UTC) and UTC offset.
13.Display the daylight saving time range for the current year
14.Convert a time from one time zone to another.
15.Converts a time to the time in a particular time zone.
16.Converts a time from one time zone to another based on time zone identifiers.
17.Eastern Standard Time
18.GMT Standard Time
19.Russian Standard Time
20.India Standard Time
21.China Standard Time
22.Tokyo Standard Time
23.Converts a Coordinated Universal Time (UTC) to the time in a specified time zone.
24.Converts the current date and time to Coordinated Universal Time (UTC).
25.Converts the time in a specified time zone to Coordinated Universal Time (UTC).
26.Creates a time zone with identifier, an offset from Coordinated Universal Time (UTC), a display name, and a standard time display name.
27.Gets the time zone identifier.
28.whether a date and time is ambiguous and can be mapped to two or more Coordinated Universal Time (UTC) times.
29.Report time as DST if it is either ambiguous or DST
30.Gets a value indicating whether the time zone has any daylight saving time rules.