I would like to use this xml file : http://skalae.fr/cdt_Evenement.xml
but i do not know where to start…
How could i retreive all “flower market” or all “market” ?
How could i get some informations about one market ?
Is there any lib or sample using that kind of xml datas (french offices de tourisme) please ?
Thank you
The best practice would either be to use an XML Serializer to deserialize the xml into objects, or to use LINQ to Xml to scan through the data and use what you wish.
Example of using XML Serializer with an Isolated Storage Xml File: http://blogs.msdn.com/b/dawate/archive/2010/08/31/windows-phone-7-xml-isolatedstorage-example.aspx
Examble of using LINQ to Xml generically: http://jesseliberty.com/2011/02/15/linq-to-xml/