Parse CIM_DateTime to .Net DateTime

安稳与你 提交于 2019-11-28 08:40:23

问题


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?


回答1:


That's almost correct. You want the following format string:

yyyyMMddHHmmss

i.e. Two-digit seconds is represented by lower-case "ss".




回答2:


Use ManagementDateTimeConverter.ToDateTime()

Credit goes to Uros Calakovic from this question.



来源:https://stackoverflow.com/questions/1717758/parse-cim-datetime-to-net-datetime

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!