DateTime.ParseExact引发FormatException

时间:2013-02-12 03:45:36

标签: c# .net datetime

代码:

DateTime.ParseExact("2/2/2002", "dd/MM/yyyy", System.Globalization.CultureInfo.InvariantCulture)

正在筹集System.FormatException

如果有人能告诉我我做错了什么,我真的很感激。

1 个答案:

答案 0 :(得分:8)

应为d/M/yyyy

DateTime.ParseExact("2/2/2002", "d/M/yyyy", System.Globalization.CultureInfo.InvariantCulture)

异常的原因是它为dd转换了两个位置,但找到的字符串为2/