C# - TimeZoneInfo.DisplayName Property with Example

In this tutorial, we will learn about the C# TimeZoneInfo.DisplayName property with its definition, usage, syntax, and example. By Nidhi Last updated : March 31, 2023

TimeZoneInfo.DisplayName Property

The TimeZoneInfo.DisplayName property is used to get the general display name that represents the time zone.

Syntax

string TimeZoneInfo.DisplayName

Parameter(s)

  • None

Return Value

It returns a string value that denotes the display name of the local time zone.

C# Example of TimeZoneInfo.DisplayName Property

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 »






Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.