Creating a XML document with C#
Just try this short piece of code, to make an XML document on the fly.In C# working with XML through the System.XML is very easy. using System; using System.Xml; namespace PavelTsekov { class MainClass { XmlDocument xmldoc; XmlNode xmlnode; XmlElement xmlelem; XmlElement xmlelem2; XmlText xmltext; static void Main(string[] args) { MainClass app=new MainClass(); } public [...]
Read more



11:01 pm by Arun Sharma