Home »
.Net »
C# Programs
C# program to get the DisplayName of local time zone (TimeZoneInfo.DisplayName Property)
C# TimeZoneInfo.DisplayName Property: Here, we are going to learn how to get the DisplayName of local time zone in C#.Net?
Submitted by Nidhi, on May 06, 2021
The DisplayName property of TimeZoneInfo class is used to get the general display name that represents the time zone.
Syntax:
string TimeZoneInfo.DisplayName
Return value:
It returns a string value that denotes the display name of the local time zone.
Program:
The source code to get the DisplayName of local time zone is given below. The given program is compiled and executed successfully.
using System;
using System.Globalization;
class TimeZoneInfoDemo
{
//Entry point of Program
static public void Main()
{
string displayName = "";
TimeZoneInfo localTimeZone;
localTimeZone = TimeZoneInfo.Local;
displayName = localTimeZone.DisplayName;
Console.WriteLine("DisplayName of Local Time Zone:\n" + displayName);
}
}
Output:
DisplayName of Local Time Zone:
(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi
Press any key to continue . . .
C# TimeZoneInfo Class Programs »