Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从数据库中的内容收到错误的解析。
这是我收到的内容和日期字符串。
格式异常:该字符串未被识别为有效的日期时间。从索引 20 开始有一个未知单词。
2013 年 11 月 2 日下午 12:30:44
我正在使用DateTime.Parse(...),我需要更改什么来执行解析?
DateTime.Parse(...)
利用DateTime.ParseExact()
DateTime.ParseExact()
DateTime x = DateTime.ParseExact("11/02/2013 12:30:44 p.m.", "dd/MM/yyyy hh:mm:ss tt", null)