Following is the example of an XML document
<People>
<Person>
<Name>ABC </Name>
<SSN>111111</SSN>
<Address>asdfg</Address>
</Person>
</People>
I need to get the Tag names but not the values between the tag names. i.e., Under Person Tag, I should grab the Name, SSN, Address nodes and not the ABC, 111111, asdfg values.
I need to use Linq to XML and query it in c#.
Any clue how to do it?