Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Xml;
- namespace Recetas.R0603
- {
- public class InsercionAgilNodos
- {
- public static void Main()
- {
- // Crea un nuevo documento XML:
- XmlDocument docXml = new XmlDocument();
- XmlNode nodoDoc = docXml.CreateXmlDeclaration("1.0", "UTF-8", null);
- // Inserción del nodo recién creado al documento:
- docXml.AppendChild(nodoDoc);
- // Creación e inserción de nuevo nodo para productos:
- XmlNode nodoProductos = docXml.CreateElement("Productos");
- docXml.AppendChild(nodoProductos);
- // Agrega dos productos:
- XmlNode producto = AyudanteXml.AgregarElemento(nodoProductos, "Producto", null);
- AyudanteXml.AgregarAtributo(producto, "ID", "10001");
- AyudanteXml.AgregarElemento(producto, "NombreProducto", "Café Negro");
- AyudanteXml.AgregarElemento(producto, "Precio", "8500");
- producto = AyudanteXml.AgregarElemento(nodoProductos, "Producto", null);
- AyudanteXml.AgregarAtributo(producto, "ID", "10002");
- AyudanteXml.AgregarElemento(producto, "NombreProducto", "Cappuccino");
- AyudanteXml.AgregarElemento(producto, "Precio", "8500");
- // Muestra el contenido del archivo en la salida estándar:
- docXml.Save(Console.Out);
- Console.ReadLine ();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement