代码:
DateTime.ParseExact("2/2/2002", "dd/MM/yyyy", System.Globalization.CultureInfo.InvariantCulture)
正在筹集System.FormatException
。
如果有人能告诉我我做错了什么,我真的很感激。
答案 0 :(得分:8)
应为d/M/yyyy
DateTime.ParseExact("2/2/2002", "d/M/yyyy", System.Globalization.CultureInfo.InvariantCulture)
异常的原因是它为dd
转换了两个位置,但找到的字符串为2/
。