Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. using System;
  2. using System.Text;
  3. using System.Xml;
  4.  
  5. namespace ParsingXml
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             // Creación de instancia de XmlDoc:
  12.             XmlDocument xmlDoc = new XmlDocument();
  13.            
  14.             // Carga de archivo XML:
  15.             xmlDoc.Load(@"A:\C#\XMLCSharp\Cap01\C01A06\config.xml");
  16.            
  17.             // Especificación de la expresión XPath:
  18.             XmlNode nodo = xmlDoc.SelectSingleNode("/config/databases/database[name='dev']/url");
  19.            
  20.             // Valida que se ha haya obtenido un valor:
  21.             if(nodo != null)
  22.             {
  23.                 Console.WriteLine(nodo.InnerText);
  24.             }
  25.         }
  26.     }
  27. }