C# Convert.ToDateTime() 问题

发布于 2024-10-04 20:06:22 字数 204 浏览 5 评论 0原文

我从文本文件中读取日期字符串。 例如。 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

二手情话 2024-10-11 20:06:22

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".

谈情不如逗狗 2024-10-11 20:06:22

嘿,输入字符串错误。应为 2/02/2010 13:23:00 PM,而不是 2/02/2010 13:23:00 AM

DateTime dt= Convert.ToDateTime("2/02/2010 13:23:00 PM");
  • AM - 00 至 12 小时
  • - 13至 24 小时

Hey The Input string is wrong. It should be 2/02/2010 13:23:00 PM and not 2/02/2010 13:23:00 AM

DateTime dt= Convert.ToDateTime("2/02/2010 13:23:00 PM");
  • AM - 00 to 12 hrs
  • PM - 13 to 24 hrs
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文