I am having a problem regarding timezone conversion in C#.
From MySQL database we are getting timezone names as "US/EASTERN", while in C# we can get TimezoneInfo by name as "Eastern Standard Time".
For example :
TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time");
so how can i map "US/EASTERN" to "Eastern Standard Time" easily.
Should i need to create a local mapping table that maps "US/EASTERN" with "Eastern Standard Time"?