tags:

views:

341

answers:

2

I need to update a .NET 2.0 website to include a function to convert time from a time zone to another.

Unfortunately I cannot use TimeZoneInfo.ConvertTime in .NET 2.0.

Is there any equivalent or workaround that takes into account Daylight Savings time?

Thanks in advance

A: 

You could try one of these libraries for similar functionality in .Net 2.0:

Lance McNearney
thanks Lance, but I'm only making a simple change on an existing website, adding a library might be a bit too much
A: 

Possible duplicate, with a Jon Skeet answer:

How to convert UTC time to Time in any other time zone in C#

Dynami Le Savard
yup similar, so there is no solution for this?