我已经尝试了所有方法,但不确定为什么字符串日期没有转换为日期时间。
string windowsTime = "2/21/2009 10:35:14 PM"
DateTime time = DateTime.ParseExact(windowsTime, "MM/dd/yyyy hh:mm:ss tt", null);
我使用过 DateTime.Parse、ParseExact、Convert.ToDatetime。但没有任何效果,我得到“字符串未被识别为有效的日期时间。”。
有人可以告诉我我做错了什么吗?