C# Convert.ToDateTime() 问题
我从文本文件中读取日期字符串。 例如。 string date="12/02/2010 13:23:00 AM"(从文本文件中读取)。 然后,我尝试使用 DateTime dt= Convert.ToDateTime(date); 将其转换为日期。 如果我在 Visual Studio 中运行,那就没问题。但是安装此设置后,如果我运行 exe,则会弹出日期时间格式异常。有什么想法吗?谢谢。
I read date string from the text file.
eg. string date="12/02/2010 13:23:00 AM" (read from the text file).
Then, I just try to convert it to date using DateTime dt= Convert.ToDateTime(date);
If I run in Visual Studio, it's ok. But after installing this setup and If i run the exe, the date time format exception pop up. Any idea? thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
13:23:00 AM
不是有效时间。它本质上是说“1:23:00 PM AM”。13:23:00 AM
is not a valid time. It is essentially saying "1:23:00 PM AM".嘿,输入字符串错误。应为
2/02/2010 13:23:00 PM
,而不是2/02/2010 13:23:00 AM
Hey The Input string is wrong. It should be
2/02/2010 13:23:00 PM
and not2/02/2010 13:23:00 AM