下面的代碼片段顯示「07/01/2011」,而不是「07/09/2011」。這段代碼片段有問題嗎?DateTime.TryParseExact將我的日期中的月份錯誤地解析爲一月份
代碼段:
DateTime result;
DateTime.TryParseExact(
"07/09/2011",
"dd-mm-yyyy",
new CultureInfo("en-GB"),
System.Globalization.DateTimeStyles.None,
out result);
// shows "07/01/2011"
MessageBox.Show(result.ToString());