我正在从 SQL 中获取日期:
2009-10-28 11:17:06.690
我将它放入 DateTime 并用 SQL 中的值填充它:
DateTime createdDate;
createdDate = reader.GetDateTime(1);
然后我想写出月份,所以我这样做:
var fileMonth = createdDate.Month.ToString("MMM");
此时代码文件中的Month 现在=“MMM”而不是“Oct”。
我在这里做错了什么?