I'd like to have a World Clock on my PocketPC. Getting the Local Time is no problem, and getting the UTC Time is even less a Problem. But I seem unable to get a specific Time Zone? Say I want the current Time Zone for New York, not knowing if it's Daylight Saving Time or not (so I do not know if it's Eastern Time (GMT-5) or Eastern Daylight (GMT-4)).
Sadly, TimeZoneInfo does not seem to exist in Compact Framework, so I wonder if there is really no other way than manually hardcoding the Daylight Saving Time changes for the desired time zones for the next 10 years in order to get a proper conversion...
Edit: TimeZone exists, but is an abstract Class that I'd have to implement myself, which I'd like to avoid because it's error prone and requires some magic on the DST Turnaround dates.