Parse XML using XDocument in Windows Phone 8
问题 Can any one tell me how to parse XML which is in this format using XDocument in Windows phone 8 <search total="" totalpages=""> <domain> <makes filter=""> <make cnt="374" image="abc.png">One</make> <make cnt="588" image="bca">Two</make> <make cnt="105" image="tley.png">Three</make> <make cnt="458" image="mw.png">Four</make> </makes> </domain> </search> Right now i am using this code but unable to get the data out. I need image and name from this XML. XDocument xdoc = XDocument.Parse(flickRes)