Lecture d'un fichier XML en C#

Fermé
Richard.M Messages postés 105 Date d'inscription dimanche 28 juin 2009 Statut Membre Dernière intervention 28 mars 2014 - Modifié par Richard.M le 6/05/2012 à 14:25
Bonjour à tous,

Voila je cherche a afficher lignes par ligne les éléments strings de la balise listeEntrees de mon fichier xml suivant:

<?xml version="1.0" encoding="utf-8"?> 
<ArrayOfInfoWebService xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="blablalbla"> 
  <infoWebService> 
    <name>ScoringPro</name> 
    <description>bla bla bla bla bla</description> 
    <listeEntrees> 
      <string>RaisonSociale</string> 
      <string>Siren</string> 
      <string>CodePostal</string> 
    </listeEntrees> 
    <listeSorties> 
      <string>ClientEnRecouvrement</string> 
      <string>DateEntree</string> 
      <string>Montant</string> 
      <string>Litige</string> 
    </listeSorties> 
  </infoWebService> 
</ArrayOfInfoWebService> 



J'arrive pourtant a lire les champs name, description, mais pour le reste j'ai du mal.
Pouvez vous m'aider ^^ ?

Merci par avance.