DataSet (Vs) XmlDocument serialization

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Howdy,

Serializing/Deserializing which object is costly? DataSet or XmlDocument....

My requirement is to store either DataSet or XmlDocument in Session whose
number of records are in the order of 700-800
 
Diffident said:
Howdy,

Serializing/Deserializing which object is costly? DataSet or
XmlDocument....

My requirement is to store either DataSet or XmlDocument in Session whose
number of records are in the order of 700-800

Why do you think that you should make this decision on the basis of cost?

Pick whichever one is easier and makes your code better, simpler and more
type-safe.

David
 
Back
Top