views:

44

answers:

1

I have a serialized DateTime string which looks like this:

2010-04-14T16:32:06.75+10:00

What is the simplest way of deserializing/parsing it back into a DateTime?

Edit: Sorry. I was a bit too quick and forgot to add... I'm using C# .Net

+3  A: 

Look at DateTime.Parse()

kyrisu
Awesome! Worked :) Thanks Kyrisu..
theblip