TimeZoneInfo.DisplayName Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the localized general display name that represents the time zone.
Assembly: mscorlib (in mscorlib.dll)
Version Notes
XNA Framework
When this property is used in the XNA Framework, it throws a NotSupportedException exception.The following example retrieves a TimeZoneInfo object that represents the local time zone and outputs its display name, standard time name, and daylight saving time name.
TimeZoneInfo localZone = TimeZoneInfo.Local; outputBlock.Text += "Local Time Zone ID:" + "\n"; outputBlock.Text += String.Format(" Display Name is: {0}.", localZone.DisplayName) + "\n"; outputBlock.Text += String.Format(" Standard name is: {0}.", localZone.StandardName) + "\n"; outputBlock.Text += String.Format(" Daylight saving name is: {0}.", localZone.DaylightName) + "\n";
Show: