Copy one xml document as a sub element into another xml document : XmlTextReader : XML C# Examples


C# Examples » XML » XmlTextReader »

 

Copy one xml document as a sub element into another xml document









    
using  System;
using  System.Xml;

class  MainClass
{
        static  void  Main(string[]  args)
        {
                XmlTextWriter  writer  =  new  XmlTextWriter("C:\\xmlWriterTest.xml",  null);
                writer.WriteStartDocument();


                XmlTextReader  reader  =  new  XmlTextReader(@"C:\Sample.xml");
                
                while  (!reader.EOF)
                {
                        writer.WriteNode(reader,  false);
                }


                //  Ends  the  document.
                writer.WriteEndDocument();

                writer.Close();

                return;
        }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo XML
» XmlTextReader