C# - 以自定义日期时间格式获取 XElement.Value

发布于 2024-12-02 02:19:08 字数 196 浏览 0 评论 0原文

这是我的问题:

我有一个 XElement 存储 DateTime,并且我想获取以自定义格式返回 DateTime 的 Value 属性。
我想知道是否有办法在 XElement 中包含 IFormatProvider

Here is my problem:

I have a XElement storing a DateTime, and I want to get the Value property returning the DateTime in a custom format.
I was wondering if there is a way to include a IFormatProvider in the XElement.

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

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

发布评论

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

评论(1

空‖城人不在 2024-12-09 02:19:08

我认为你在这里混合了东西。 XElement 始终将其值存储为字符串。要获取自定义日期格式,您需要先将此字符串转换为 DateTime 对象,然后使用您想要的格式调用 ToString

I think you are mixing things here. The XElement always stores its value as a string. To get a custom date format, you need to convert this string into a DateTime object first and then call ToString with the format you want to have.

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