What is the difference between Dataset.Clone() and DataSet.Copy() methods?
Answer»
The METHODClone() copies only the DataSet structure. The COPIED structure will have all the constraints, relations, as WELL as DataTable schemas used by the DataSet. It does not copy the DATA stored in the DataSet.
The Copy() method copies the DataSet structure along with the data in the DataSet. The original data will not be affected.