J
Jonathan Wood
I have a DateTime value that represents a UTC time (DateTime). I also have a
UTC offset value (double) and a Daylight Savings Time value (bool) for a
local time. How best to calculate the local time from this data?
I've been searching the web for a while now. I've found a lot of interesting
new classes and various ways to approach this. But not one is dealing with
data in the form described above.
More Info:
I'm building a website where people can post comments. The date of each
comment is stored in the database as UTC time. My site also needs to track
which region each user is from. So my region table contains time zone
information which I need to apply to the UTC time. I'm opening to storing
different data types, etc. But I don't want to make this much more
complicated.
Thanks.
Jonathan
UTC offset value (double) and a Daylight Savings Time value (bool) for a
local time. How best to calculate the local time from this data?
I've been searching the web for a while now. I've found a lot of interesting
new classes and various ways to approach this. But not one is dealing with
data in the form described above.
More Info:
I'm building a website where people can post comments. The date of each
comment is stored in the database as UTC time. My site also needs to track
which region each user is from. So my region table contains time zone
information which I need to apply to the UTC time. I'm opening to storing
different data types, etc. But I don't want to make this much more
complicated.
Thanks.
Jonathan