我試圖將一種格式的日期字符串轉換爲另一種格式。但是,我收到此異常錯誤消息將字符串轉換爲datetime問題
字符串未被識別爲有效的日期時間。
我的代碼如下:
string theDate = "28-Feb-13 4:00:00 PM";
DateTime tempDate = DateTime.ParseExact(theDate, "dd-MMM-yy hh:mm:ss tt", CultureInfo.InvariantCulture, DateTimeStyles.None);
convertedDate = tempDate.ToString("yyyy/MM/dd hh:mm:ss");
我嚴重不知道哪裏出了問題。
我覺得你的問題是字符串,日期時間,而不是周圍的其他方法如在標題 – Techmonk 2013-02-15 07:36:00