我有以下格式的字符串:格式化日期時間錯誤
29-Feb-17 03.36.15.1902 PM
,我試圖把它轉換成一個DateTime對象用下面的代碼:
DateTime.ParseExact(request.DispatchTime, "dd-MMM-yy hh.mm.ss.ffff tt", CultureInfo.InvariantCulture);
但得到的錯誤:
The DateTime represented by the string is not supported in calendar System.Globalization.GregorianCalendar.
格式不受GregorianCalendar類支持,因爲錯誤狀態。 '17-Feb-17'是一個不好的格式,因爲假設'17',我們不知道你的意思是'1917'還是'2017',所以'DateTime'通常也不支持。 –