0
我得到這個錯誤:字符串未被識別爲有效的DateTime時解析確切
String was not recognized as a valid DateTime.
當試圖解析此日期:
DateTime.ParseExact("2015-08-05", "YYYY-MM-dd", CultureInfo.InvariantCulture)
有什麼不對的日期格式,以及如何我解決這個問題嗎?
我得到這個錯誤:字符串未被識別爲有效的DateTime時解析確切
String was not recognized as a valid DateTime.
當試圖解析此日期:
DateTime.ParseExact("2015-08-05", "YYYY-MM-dd", CultureInfo.InvariantCulture)
有什麼不對的日期格式,以及如何我解決這個問題嗎?
的 「YYYY」 部分需要是小寫:
DateTime.ParseExact("2015-08-05", "yyyy-MM-dd", CultureInfo.InvariantCulture)
' 「YYYY-MM-DD」'是未知的格式說明,嘗試用'「YYYY -MM-DD「' – chouaib