Advertisement
Fhernd

CreacionArbolXml.cs

Jun 14th, 2016
2,736
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.61 KB | None | 0 0
  1. using System;
  2. using System.Xml;
  3. using System.Xml.Linq;
  4.  
  5. namespace Recetas.CSharp.R0614
  6. {
  7.     public class CreacionArbolXml
  8.     {
  9.         public static void Main()
  10.         {
  11.             // Crea el elemento raíz con el primer elemento Producto:
  12.             XElement elementoRaiz = new XElement("Productos",
  13.                 new XElement("Producto",
  14.                     new XAttribute("ID", 100001),
  15.                     new XElement("NombreProducto", "Café Negro"),
  16.                     new XElement("Descripcion", "El mejor café negro."),
  17.                     new XElement("Precio", 8500),
  18.                     new XElement("Disponible", true)
  19.                 )
  20.             );
  21.            
  22.             // Agrega un nuevo elemento al árbol:
  23.             XElement cappuccino = new XElement("Producto");
  24.             cappuccino.Add(new XAttribute("ID", 100002));
  25.             cappuccino.Add(new XElement("NombreProducto", "Cappuccino"));
  26.             cappuccino.Add(new XElement("Descripcion", "Mezcla espumosa de espresso y leche hervida."));
  27.             cappuccino.Add(new XElement("Precio", 9500));
  28.             cappuccino.Add(new XElement("Disponible", true));
  29.            
  30.             elementoRaiz.Add(cappuccino);
  31.            
  32.             XDocument catalogoProductos = new XDocument(
  33.                 new XDeclaration("1.0", "", ""),
  34.                 elementoRaiz
  35.             );
  36.            
  37.             // Muestra el contenido del árbol recién creado:
  38.             Console.WriteLine ();
  39.             catalogoProductos.Save(Console.Out);
  40.            
  41.             Console.WriteLine ("\n");
  42.         }
  43.     }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement