### Get Display Name for Time Zone (French) Source: https://github.com/mattjohnsonpint/timezonenames/blob/main/README.md Retrieves the localized display name for a given time zone identifier and culture. This example shows how to get the French display name for the America/Vancouver time zone. ```csharp string displayName = TZNames.GetDisplayNameForTimeZone("America/Vancouver", "fr"); // => "(UTC-08:00) Pacifique (É.-U. et Canada)" ``` -------------------------------- ### Get Display Name for Time Zone (Chinese) Source: https://github.com/mattjohnsonpint/timezonenames/blob/main/README.md Retrieves the localized display name for a given time zone identifier and culture. This example shows how to get the Simplified Chinese display name for 'India Standard Time'. ```csharp string displayName = TZNames.GetDisplayNameForTimeZone("India Standard Time", "zh-CN"); // => "(UTC+05:30) 钦奈,加尔各答,孟买,新德里" ```