Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Xml;
- using System.IO;
- namespace Articulos.Preguntas
- {
- public sealed class LecturaElementosXML
- {
- public static void Main()
- {
- XmlReader lectorXml = XmlReader.Create ("libros.xml");
- // Este método obvia los nodos que no son parte del contenido, y pasa
- // directamente a nodos de contenido:
- while (lectorXml.Read())
- {
- if (lectorXml.IsStartElement())
- {
- Console.WriteLine ("<{0}> ", lectorXml.Name);
- }
- else
- {
- Console.Write ("<{0}> ", lectorXml.Name);
- // Lee el inicio de la marca:
- lectorXml.Read();
- // Lectura de elementos anidados:
- if (lectorXml.IsStartElement())
- {
- Console.Write ("\t<{0}>", lectorXml.Name);
- }
- // Lee el texto del elemento:
- Console.WriteLine (lectorXml.ReadString());
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement