从对象 C# 序列化可空字段
我正在尝试序列化具有可为空字段的对象。 如果该字段中没有任何数据,则该字段将从序列化输出中删除。 关于如何解决这个问题有什么建议吗? 有没有办法指定可为空的空字段仍然被保留?
当“propertyname_specified = false”时会发生这种情况
I am trying to serialize an object that has nullable fields. If the field doesn't have any data in it the field is dropped from the serialized output. Any suggests on how to work around this? Is there a way to specify that nullable empty fields still get carried over?
This occurs when "propertyname_specified = false"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须应用 XmlElementAttribute:
You must apply XmlElementAttribute:
这就是 .NET XML 序列化中空值的通信方式,该元素不存在。
This is how nulls are communicated in .NET XML serialization, the element doesn't exist.