好吧,經過一番研究,我還沒有找到任何方法來解決我的問題。字符串datetime:未被識別爲有效的日期時間
這是我的字符串到日期的轉換代碼:
DateTime startDate = new DateTime();
startDate = DateTime.ParseExact(this.items[5], "dd/MM/yyyy HH:mm:ss",
CultureInfo.InvariantCulture);
這是我要轉換的字符串:
"22/2/2013 09:57:32"
但是我編譯時有這樣的錯誤:
String was not recognized as a valid DateTime.
我該怎麼辦?
這就是問題!謝謝 – Alroc 2013-02-22 09:28:43