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 . . .
Program:
The source code to get the DisplayName of local time zone is given below. The given program is compiled and executed successfully.
Output: