具有多个类的 XmlSerializer
在一个文件中使用 XmlSerializer 序列化多个类的最佳方法是什么?理想情况下,我想要的是拥有一个根节点,并且 XmlSerializer 将一个子节点序列化到该根节点,每个类一个。
否则,我的另一个想法是制作一个包含这些类的包装器并将其序列化。
What's the best way to serialize multiple classes with XmlSerializer in one file? Ideally, what I want is to have one root node and the XmlSerializer serializes one child node to this root node, one per class.
Otherwise, my other idea is to just make a wrapper that contains these classes and serialize that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将要序列化的对象添加到集合中,然后使用 XmlSerializer 序列化该集合。
Add the objects you want to serialize into a collection and then serialize the collection using the XmlSerializer.