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.
是否可以更改 DateTime 的序列化格式。
基本上我希望序列化后在我的 xml 文件中输出这个 DateTime:
yyyyMMddHHmmss
...以及反序列化后的正确 DateTime 值。
你不能。
但是,如果您同时控制序列化器和反序列化器,则可以使用[XmlIgnore]DateTime 字段上的属性,并创建一个自定义属性,将字符串格式化(和解析)为所需格式。
[XmlIgnore]