Create XML document by specifying the elements : Xml Creation : XML C# Examples


C# Examples » XML » Xml Creation »

 

Create XML document by specifying the elements









    
using  System;
using  System.Collections;
using  System.Data;
using  System.Xml;

public  class  MainClass  {
      public  static  void  Main()  {
            XmlDocument  doc  =  new  XmlDocument();

            XmlElement  root  =  doc.CreateElement(  "books"  );
            doc.AppendChild(  root  );

            XmlElement  eltBook  =  doc.CreateElement(  "book"  );
            root.AppendChild(  eltBook  );

            XmlElement  eltTitle  =  doc.CreateElement(  "title"  );
            eltTitle.AppendChild(  doc.CreateTextNode(  "myTitle"  )  );
            eltBook.AppendChild(  eltTitle  );

            XmlElement  eltAuthor  =  doc.CreateElement(  "author"  );
            eltAuthor.AppendChild(  doc.CreateTextNode(    "myAuthor"  )  );
            eltBook.AppendChild(  eltAuthor  );

            XmlElement  eltPrice  =  doc.CreateElement(  "price"  );
            eltPrice.AppendChild(  doc.CreateTextNode(    "10.0"  )  );
            eltBook.AppendChild(  eltPrice  );

            Console.WriteLine(  doc.OuterXml  );
      }
}
    
   
  
   



Output

myTitle
myAuthor10.0


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo XML
» Xml Creation