Gets a TimeZoneInfo object that represents the Coordinated Universal Time (UTC) zone.
Module Example Public Sub Main() Dim universalZone As TimeZoneInfo = TimeZoneInfo.Utc Console.WriteLine("The universal time zone is {0}.", universalZone.DisplayName) Console.WriteLine("Its standard name is {0}.", universalZone.StandardName) Console.WriteLine("Its daylight savings name is {0}.", universalZone.DaylightName) End Sub End Module