没有分隔符的DateTime.ParseExact

时间:2015-11-16 15:24:40

标签: c# parsing datetime

我的文件名中有一个日期/时间的文件。

e.g。 201511151515.html 代表2015年11月15日15:15

尝试使用DateTime.ParseExact

进行解析时
DateTime dt = DateTime.ParseExact("201511151515", "yyyyMMddhhmm", CultureInfo.InvariantCulture);
  

“字符串未被识别为有效的日期时间”。

为什么ParseExact没有正确解析字符串?根据我在MSDN上阅读的内容,如果我提供自定义日期掩码,该方法应该能够正确解析字符串。

MSDN链接this documentation

0 个答案:

没有答案