Reputation: 3044
I've got a datetime from an XML file of this format:
<LastFetchTime>2011-03-25T00:09:09+08:00</LastFetchTime>
And when I parse and convert it into a C# datetime using this code:
lastAppliedDate = DateTime.Parse(xmlInput.Descendants("LastFetchTime").First().Value);
I get
{3/24/2011 12:09:09 PM}
Which I think is odd, since +8 ought to move you forward, not back.
Can anyone see what I'm missing?
Upvotes: 0
Views: 88