using System;
public class Program
{
public static void Main()
var timeZoneName = "Canada Central Standard Time";
var localTimeZone = TimeZoneInfo.FindSystemTimeZoneById(timeZoneName);
Console.WriteLine(localTimeZone);
}