Serializing/Deserializing a typed DataTable existing in a DataSet

  • Thread starter Thread starter Venugopal Mallarapu
  • Start date Start date
V

Venugopal Mallarapu

I want to serialize a DataTable that exista within a typed
Dataset into an XML file and later deserialize it.
I am not able to do that....
any pointers?
 
Hi,

No, DataTable is not serializable.
Why don't you create an empty dataset, put the table into and serialize it?
 
Back
Top