bonjour
voila je voudrais parcourir un fichier xml mais le problème c'est que une ligne bleu apparait sous XPathDocument,XPathNavigator, XPathNodeIterator (type is not defined)

voici une partie du code
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
   Dim document As XPathDocument = New XPathDocument(XmlSource)
        Dim navigator As XPathNavigator = document.CreateNavigator()
        Dim nodesoperation As XPathNodeIterator = navigator.Select("/charg/liv/libel")
        Dim nodesId As XPathNodeIterator = navigator.Select("/charg/liv/qte")
j essayé avec un autre méthode mais c'est encore pire
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
For Each personneElement In xmlDoc.selectNodes("/charg/liv") 
 
	nom =  personneElement.selectSingleNode("libel").text
la il m'affiche
The targeted version of the .net compact framework does not support latebinding
sur
Code : Sélectionner tout - Visualiser dans une fenêtre à part
personneElement.selectSingleNode("libel").text
c'est quoi le probleme parce que la je suis totalement perdu

et merci d'avance