I am using XMLTextReader to extract information out of a xml file. Now I want to use ReadContentAsDateTime but it always throughs an exception. I already tried 2005.9.26, 2005/9/26 and 2005, 9, 26. Does somebody know the correct format for this?

link|improve this question

67% accept rate
try look here: stackoverflow.com/questions/661881/… – danyolgiax Jun 24 '11 at 10:55
XamlParseException – theknut Jun 24 '11 at 10:58
Possible Duplicate stackoverflow.com/questions/661881/… – Sai Kalyan Akshinthala Jun 24 '11 at 10:59
feedback

1 Answer

Note that the XmlReader.ReadContentAsDateTime documentation includes:

If the content is not typed xsd:dateTime, the reader attempts to convert it to a DateTime object according to the rules defined by the W3C XML Schema Part 2: Datatypes recommendation

That is ISO 8601: yyyy-MM-ddThh:mm:ss.hhhhhhh or yyyyMMddThhmmsshhhhhhh (former prefered) using T to separate date and time. There are various ways to truncate (don't need to include fractions of seconds) and include time zone information.

link|improve this answer
TryParse did a good job. So I just read it as string and converted it which worked also fine for me. Thanks for your response! – theknut Jun 24 '11 at 19:04
@theknut: DateTime.TryParse is locale dependent... be careful with that. Probably better to use TryParseExact and specify the inbound format. Even better to use the canonical format for maximum interoperability. – Richard Jun 24 '11 at 22:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.