![]() |
General Programming »
Date and Time »
General
Intermediate
License: The Code Project Open License (CPOL)
How to use time-zones in .NET under WindowsBy kian01This article describes how to convert between arbitrary time-zones in .NET 2.0. |
C#, Windows (WinXP), .NET (.NET 2.0), Win32, Visual Studio (VS2005), Dev
|
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||
Time-zone handling in .NET 2.0 is restricted to converting between UTC and local (usually server) time. However, in order to display DateTime correctly to users in different regions, in particular, in web applications, you need to be able to convert DateTime between UTC (which is what you should always store in your DB) and the target time zone.
The source code includes a library (basically a single class) and a sample application that shows how to use the library.
The library reads the registry for time-zone names and basic information, and uses Interop to access the Windows system calls necessary to convert between the different time zones.
The following lines are taken from the sample application:
// list all time zones
TimeZoneInformation[] arrTzi = TimeZoneInformation.EnumZones();
foreach (TimeZoneInformation tzi in arrTzi)
{
Console.Write("name: " + tzi.Name);
Console.WriteLine(" --- now: " + tzi.FromUniversalTime(dt));
}
Each instance of the TimeZoneInformation class has the following useful attributes: Name, DisplayName, Index, Bias (against UTC), DaylightBias, DaylightName, StandardBias, and StandardName.
Converting between time-zones is as easy as this:
TimeZoneInformation tziLocal = TimeZoneInformation.CurrentTimeZone;
TimeZoneInformation tziRemote = TimeZoneInformation.FromIndex(10);
// convert local time to UTC (could be abbreviated as DateTime.UtcNow)
DateTime dt = tziLocal.ToUniversalTime(DateTime.Now);
DateTime dt2 = tziRemote.FromUniversalTime(dt);
I have noticed that the time-zone names change when there are Windows updates, so you do not want to rely on them. I am keeping my fingers crossed that the Index attribute will not change.
I found the basis for my code on the internet but cannot remember where (it has been about two years ago). If you are the one whose code snippets I borrowed, drop me an email and I'll name you here!
None yet.
| You must Sign In to use this message board. | |||||||||||||||
|
|||||||||||||||
|
|||||||||||||||
|
|||||||||||||||
|
|||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 6 Jun 2008 Editor: Smitha Vijayan |
Copyright 2008 by kian01 Everything else Copyright © CodeProject, 1999-2009 Web19 | Advertise on the Code Project |