我正在尝试使用DateTime.ParseExact
,但我不断收到错误消息
字符串未被识别为有效的日期时间。
查看下面的屏幕截图,我已将我的项目存储在dateToParse
变量中(仅供参考)。
但在我试图设置的底部,Date
它不想玩得很好。
Date = DateTime.ParseExact(rawDescription[4], "MM'/'dd'/'yyyy", null)
我也尝试过不带单引号和指定文化的
Date = DateTime.ParseExact(rawDescription[4], "MM/dd/yyyy", CultureInfo.InvariantCulture)
知道出了什么问题吗?