What Is The Difference Between Dataset.clone And Dataset.copy?

2

2 Answers

Shalin Choksi Profile
Shalin Choksi answered
There is a huge difference between dataset clone and dataset copy. Though, a clone means a copy of something, but the results here are different. The methods involved between the two are quite different as well. By the method of dataset clone, the structure of the dataset is copied which contains datatable schemes and constraints. It actually does not copy any relevant data. On the other hand, the dataset copy has the ability to copy both the structure and the data of the program. These kinds of methods are used in the computer programming languages such as C#. The dataset is in a form of rows and columns in a tubular form which contain valuable data that is to be input in the programming language. It is helpful in creating programs for the computer.
Anonymous Profile
Anonymous answered
Clone :- It only copies structure, does not copy data.
Copy  :- Copies both Structure and data

Answer Question

Anonymous