Do TimeZoneInfo and Olson database use identical identificators for time zones?
I get timezone id from GeoNames service (which is based on Olson database) and want to retrieve day light saving information for that timezone.
Do TimeZoneInfo and Olson database use identical identificators for time zones?
I get timezone id from GeoNames service (which is based on Olson database) and want to retrieve day light saving information for that timezone.
No they don't use the same identifiers. A possible solution is to use Noda-Time which foregoes TimeZoneInfo in favour of Olson timezones.
Further reading: What's wrong with DateTime anyway?