袖珍电脑模拟器中的日期格式问题

发布于 2024-11-02 16:08:03 字数 167 浏览 4 评论 0原文

使用 ToString() 将数据表中的日期值(例如“4/20/2011 7:10:39 PM”)转换为字符串时,它变成了 4/20/11。我该如何解决这个问题?我想要它截至 2011 年 4 月 20 日。我正在使用 .net 2008 中的 Pocket PC 应用程序并使用 windows ce 5.0 模拟器。

While converting a date value in a datatable such as "4/20/2011 7:10:39 PM" into a string by using ToString(),it becomes 4/20/11.How can i solve that problem?I want it as 4/20/2011.I am using Pocket Pc application in .net 2008 and using windows ce 5.0 emulator.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

渔村楼浪 2024-11-09 16:08:03

.NET Compact Framework 支持 DateTime 上的大多数操作:

http://msdn.microsoft.com/en-us/library/system.datetime_members(v=VS.90).aspx

您可以使用内置的之一或 ToString 的覆盖之一并指定您自己的格式参数:http: //www.dotnetperls.com/datetime-format

ToStringDateTime 的默认操作会考虑进程的当前区域性。

尝试:

DateTime.Now.ToString("d/MM/yyyy");

Most actions on DateTime are supported by the .NET Compact Framework:

http://msdn.microsoft.com/en-us/library/system.datetime_members(v=VS.90).aspx

You could use one of the built in ones, or one of the overrides of ToString and specify your own formatting arguments: http://www.dotnetperls.com/datetime-format

The default action of ToString on DateTime takes into account the current culture of the process.

Try:

DateTime.Now.ToString("d/MM/yyyy");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文