LINQ to XML query
- by ile
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>
</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