Array in XML file

toytoy

Well-known member
Joined
Jul 16, 2004
Messages
46
Programming Experience
1-3
Hi

Can anyone give me some examples on how to make array of list inside the xml files using VB.NET...

For Example i create one xml file called AddressBook
I wan to create each personal address and save it inside the xml files.....how to do it...

I also wan to use XML Serializing to retrieve and save on to window application form...

But what is the step in creating such xml files...

Thanks
 
The System.Data.DataSet class has methods to write and read an xml file (WriteXml and ReadXml). If you can create datasets, much of the work is already done.
 
Back
Top