Rajeesh
Rajeesh

Reputation: 4485

TimeZone information in .NET 2.0

Could anybody suggest a third party library in .net which could provide Time Zone information and meet these requirements

  1. Which supports .NET 2.0 not .net 3.5
    Note: (.NET 3.5 has a class called TimeZoneInfo).
  2. Mono compatible

Ta,
Rajeesh

Upvotes: 0

Views: 1148

Answers (3)

Boris Modylevsky
Boris Modylevsky

Reputation: 3099

Use this one for .NET 2.0: http://www.codeproject.com/KB/datetime/timezones.aspx

Upvotes: 0

skolima
skolima

Reputation: 32684

TimeZoneInfo is implemented in Mono, do you need Windows 2000 compatibility? Are you sure you need to stick with .NET 2.0?

Upvotes: 0

JDunkerley
JDunkerley

Reputation: 12495

http://www.codeplex.com/publicdomain

Uses the Olsen TimeZone Database. Hence think it also works historically, have found in the past that the TimeZoneInfo class does not work when the rules have changed.

Think it is Mono compatible.

Upvotes: 2

Related Questions