从对象 C# 序列化可空字段

发布于 2024-07-25 10:17:10 字数 152 浏览 4 评论 0原文

我正在尝试序列化具有可为空字段的对象。 如果该字段中没有任何数据,则该字段将从序列化输出中删除。 关于如何解决这个问题有什么建议吗? 有没有办法指定可为空的空字段仍然被保留?

当“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 技术交流群。

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

发布评论

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

评论(2

厌味 2024-08-01 10:17:10

您必须应用 XmlElementAttribute:

[XmlElement(IsNullable = true)]
public string DummyField { get; set; }

You must apply XmlElementAttribute:

[XmlElement(IsNullable = true)]
public string DummyField { get; set; }
只是偏爱你 2024-08-01 10:17:10

这就是 .NET XML 序列化中空值的通信方式,该元素不存在。

This is how nulls are communicated in .NET XML serialization, the element doesn't exist.

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