Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Parse CIM_DateTime to .Net DateTime

My application is receiving some date information from WMI. This in the form of strings with the following format:

yyyymmddHHMMSS.mmmmmmsUUU

For more details on this format, see here. I'm interested in parsing everything before the period. I have the following code:

    string testDate = "20010701212212"; // July, 01, 2001 21:22:12, in the format specified above
    string format = "yyyyMMddHHmmSS";
    CultureInfo culture = CultureInfo.InvariantCulture;
    DateTime newDate = DateTime.ParseExact(date, format, culture);

This always fails on the call to ParseExact(), with an exception stating that "String was not recognized as a valid DateTime." What am I doing wrong here?

like image 303
Odrade Avatar asked Nov 11 '09 20:11

Odrade


People also ask

What is DateTime parse in C#?

The DateTime. ParseExact method converts the specified string representation of a datetime to a DateTime . The datetime string format must match the specified format exactly; otherwise an exception is thrown. Date & time is culture specific; the methods either use the current culture or accept a specific culture.


1 Answers

Use ManagementDateTimeConverter.ToDateTime()

Credit goes to Uros Calakovic from this question.

like image 53
Brian Low Avatar answered Nov 02 '22 22:11

Brian Low