DataTable XML

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

How can I save DataTable XML representation to th string and also load data
(XML formated) from the string to the DataTable?
 
Add table to a dataset (if it does not belong to one) and use
DataSet.WriteXml and DataSet.ReadXml
 
Back
Top