public static void Main()
Console.WriteLine($"The UTC time in Central Time Zone is {GetCurrentDateCst():u}");
public static DateTime GetCurrentDateCst()
return TimeZoneInfo.ConvertTimeFromUtc(DateTime.UtcNow, TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time"));