我似乎找不到如何将字符串转换为日期时间。这是我的日期的样子:“23-nov-12”。
我尝试了以下方法:
DateTime convertedDate = DateTime.ParseExact("dd-MMM-yy", "23-nov-12", CultureInfo.InvariantCulture);
并且
DateTime convertedDate = DateTime.ParseExact("0:d-MMM-yy", "23-nov-12", CultureInfo.InvariantCulture);
但我总是收到以下错误:
字符串未被识别为有效的日期时间。