vote up 2 vote down star

Is there any method to get the 3 char code from System.TimeZoneInfo.Local ?

e.g. EDT instead of Eastern Daylight time etc.

flag

78% accept rate

1 Answer

vote up 3 vote down check

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:

public static class TimeZoneInfoExtensions {

        public static string Abbreviation(this TimeZoneInfo Source) {

        var Map = new Dictionary<string, string>()
        {
            {"eastern standard time","est"},
            {"mountain standard time","mst"},
            {"central standard time","cst"},
            {"pacific standard time","pst"}
            //etc...
        };

        return Map[Source.Id.ToLower()].ToUpper();

    }

}

Use as follows:

string CurrentTimeZoneAbbreviation = System.TimeZoneInfo.Local.Abbreviation();

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.

link|flag
The possible values for Id can be found in the registry under HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Time Zone (they're different from the names in timeanddate.com/library/abbreviations/… ) – dtb Sep 9 at 23:29
@dtb: Thank you. – Robert Venables Sep 9 at 23:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.