Is there any method to get the 3 char code from System.TimeZoneInfo.Local ?
e.g. EDT instead of Eastern Daylight time etc.
|
|
|
|
|
|
|
Unfortunately, there is no easy built-in way of doing this that I know of. However, you could put something together yourself. Here's an example:
Use as follows:
If you need more conversions you could just plug them into the Map dictionary. TimeZoneInfo.Id will be a string matching a given key in [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones]. If you can find a matching database online, containing the same Ids as well as the abbreviations, it would be possible to quickly extract and import the pairs (with regular expressions, for example) and drop those into the Map dictionary. |
||||
|