What kind of date format is this and how can I get this formatted like a real date?

Expiredate="401769" 

Effectivedate="0" ModifiedWhen="39316.262472303242" CreatedWhen="38476.390116666669"

This is from Microsoft Content Management Server (MCMS) 2002 .sdo file (XML file exporting data)

link|improve this question

It would be easier to answer if you could tell us which dates these values represent. – Daniel Hilgarth Jan 11 at 11:29
3  
Read about ToOADate and FromOADate – DonAndre Jan 11 at 11:43
feedback

1 Answer

up vote 4 down vote accepted

DateTime.FromOADate(39316.262472303242) should get you the DateTime //gives 22/08/2007

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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