XmlArrayAttribute 和 XmlArrayItemAttribute 之间有什么区别?
XmlArrayAttribute 和 XmlArrayItemAttribute 之间有什么区别?请解释双方(即序列化和反序列化)。
What is the difference between XmlArrayAttribute and XmlArrayItemAttribute? Please explain both sides (i.e. serialzing and deserialzing).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的回答 - 使用 XmlArrayAttribute 您可以更改整个集合的序列化方式(例如,将包含条目的 xml 标记的名称是什么),并且使用 XmlArrayItemAttribute 您可以控制每个项目。非常好的例子在这里: http://msdn.microsoft.com/en-us /library/2baksw0z.aspx
A short answer - with the XmlArrayAttribute you change how the whole collection is serialized (so e.g. what is the name of the xml tag that will contain the entries), and with XmlArrayItemAttribute you control every item. Really good examples are here: http://msdn.microsoft.com/en-us/library/2baksw0z.aspx