具有字典的嵌套类的 XML 序列化

发布于 2024-08-26 19:43:34 字数 187 浏览 14 评论 0原文

我正在尝试对嵌套类进行 XML 序列化。这两个类都有我使用此 链接

序列化工作正常,但嵌套类不会被反序列化。 你能让我知道该怎么做吗?

I am trying to XML-serialize a nested class. Both classes have dictionaries which I am serializing using this link.

Serialization works fine but the nested class doesn't get de-serialized.
Can you please let me know how to do it?

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

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

发布评论

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

评论(2

隐诗 2024-09-02 19:43:34

在需要序列化的类上实现 IXmlSerializable。这是一些额外的工作,但它提供了一种更好的方法来控制类的 XML 输出。

如果这样做,序列化字典就不成问题了。

Implement IXmlSerializable on the class that you need to serialize. It's a bit of extra work, but it provides a much nicer way to control XML output for your classes.

If you do this, serializing a dictionary should not be a issue.

千柳 2024-09-02 19:43:34

XML 序列化不会序列化嵌套类。它仅序列化类的成员字段/属性。如果要序列化嵌套类,则父类中应该有嵌套类类型的字段。

XML Serialization does not serialize nested classes. It only serializes member fields/properties of a class. If you want to serialize a nested class, you should have a field of the nested class type in the parent class.

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