.Net Tips – Finding the time in a given TimeZone

You can find the current time in a different time zone using the TimeZoneInfo class.

To find all the available system time zones:

var timezones = TimeZoneInfo.GetSystemTimeZones();

From the returned values you can see the

So, if I want to find out what the time is in Amsterdam:

image

image

I can do this to get the time in HH:mm:ss format:

var timeZone = TimeZoneInfo.FindSystemTimeZoneById("W. Europe Standard Time");
string s = TimeZoneInfo.ConvertTime(DateTime.Now, timeZone).ToString("HH:mm:ss");

 

Learn to build Production-Ready Serverless applications

Want to learn how to build Serverless applications and follow best practices? Subscribe to my newsletter and join over 4,000 AWS & Serverless enthusiasts who have signed up already.

2 thoughts on “.Net Tips – Finding the time in a given TimeZone”

Leave a Comment

Your email address will not be published. Required fields are marked *