Fill DataSet with the data from XML : Xml DataSet : XML C# Examples


C# Examples » XML » Xml DataSet »

 

Fill DataSet with the data from XML









    
using  System;
using  System.Xml;
using  System.Xml.Xsl;
using  System.Xml.XPath;
using  System.Data.Common;
using  System.Data;

class  MainClass
{
    static  void  Main(string[]  args)
    {
        DataSet  ds  =  new  DataSet();
        
        ds.ReadXml(@"c:\Sample.xml  ");
    }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo XML
» Xml DataSet