views:

150

answers:

1

I can't seem to find anything other than XDocument.Descendants () in the documentation. Is there any way to do this?

+6  A: 

what you're looking for might be XDocument.Elements(). MSDN Reference.

Dynami Le Savard