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.
这是我的问题:
我有一个XElement存储 a DateTime,我想获取DateTime以自定义格式返回的 Value 属性。 我想知道是否有办法IFormatProvider在XElement.
XElement
DateTime
IFormatProvider
我想你在这里混合了东西。始终将XElement其值存储为字符串。要获得自定义日期格式,您需要先将此字符串转换为DateTime对象,然后ToString使用您想要的格式调用。
ToString