LINQ 到 XML 查询
这里我有非常相似的xml结构,但现在我有这个:
<Fields>
<Company>My Company</Company>
<Address2>Villa at beach</Address2>
<Email2>[email protected]</Email2>
<Mobile>333-888</Mobile>
<ContactMethod>Facebook</ContactMethod>
...etc...
</Fields>
现在我需要与给定链接相同的输出: 公司:我的公司
地址2:海滩别墅
Email2: [email protected]
它的查询是什么?
谢谢,
岛
Here I had very similar xml structure, but now I have this:
<Fields>
<Company>My Company</Company>
<Address2>Villa at beach</Address2>
<Email2>[email protected]</Email2>
<Mobile>333-888</Mobile>
<ContactMethod>Facebook</ContactMethod>
...etc...
</Fields>
And now I need the same output as on the given link:
Company: My Company
Address2: Villa at beach
Email2: [email protected]
What would be the query for it?
Thanks,
Ile
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您希望将结果作为字典,您可以这样做:
Assuming you want the results as a dictionary you could do this: