今天早上測試好久,最後放棄了@@
但是還是上來問一下各位前輩...
Oracle 資料庫內的欄位是Date。然後,撈出來的結果是...
string strDate = "2015/9/30 上午 11:30:26";
我定義了許多格式來試圖Parse.
string[] arrFormat = new string[]{ "yyyyMMdd HH:mm:ss",
"yyyy/MM/dd tt hh:mm:ss",
"yyyy/M/dd tt hh:mm:ss" }
DateTime ParseResult1 = DateTime.ParseExact(strDate,
arrFormat,
CultureInfo.InvariantCulture,
DateTimeStyles.AllowWhiteSpaces);
但是,最後仍是拋出Exception.....
最後,放棄C#,改由下SQL 直接TO_CHAR轉成可以Parse的格式...
不曉得有沒有人知道該怎麼解決呢?? 謝謝各位前輩