I have an datetime object that I want to remove one hour to display the corect time in a different time zone. I am using datetime.addhours(-1) with the -1 being a config value. This works in most cases except when I set the time to 12:59 AM today it displays 11:59 AM today. When it should display 11:59 PM. Is it possible to have addDays() repect the date?
|
|
|||||
|
|
|
How about using the Subtract function:
|
||||||||
|
|
|
|
||
|
|
|
|
Generally speaking, if you are handling time zone issues you should use the functions that store the datetime in a UTC format and then map to the correct TZ. However if that is overkill for your application what you are doing is correect.
This results in a time of 23:59:00 or 11:59PM on 12/16/2008. The time you are feeding in might not have the proper am/pm designator. |
||
|
|
|
|
I notice you didn't specify which framework version you are using. If you are using 2.0 SP1, 3.0 SP1, or 3.5 SP1 you might want to use the DateTimeOffset structure instead. Then you would simply specify the Timezone offset and everything should work. Hope that helps! |
||
|
|
