What is the difference between the Clone() and Copy() methods of the DataSet class?
The Clone() method copies only the structure of a DataSet. The copied structure having all the relation, constraint, and DataTable schemas used by the DataSet. The Clone() method does not copy the data, which is kept in the DataSet.
The Copy() method copies the structure as well as the data stored in the DataSet.