如何按属性对 XDocument 进行排序?
我有一些 XML,
<Users>
<User Name="Z"/>
<User Name="D"/>
<User Name="A"/>
</User>
我想按名称对其进行排序。我使用 XDocument
加载该 xml。如何查看按名称排序的 xml?
I have some XML
<Users>
<User Name="Z"/>
<User Name="D"/>
<User Name="A"/>
</User>
I want to sort that by Name. I load that xml using XDocument
. How can I view that xml sorted by Name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 XmlDocument 不是这种情况,您可以使用 LINQ to Xml 进行排序
You can sort using LINQ to Xml, if XmlDocument is not the case