In this article, I am going to discuss some important DataTable Methods in C# with examples. Please read our previous article where we discussed ADO.NET DataTable with Examples. At the end of this article, you will understand the Copy, Clone, Remove and Delete method of the DataTable object.

Example to understand DataTable Methods in C# using SQL Server:
We are going to use the following student table to understand the SqlDataAdapter object.
Please use the below SQL script to create a database called StudentDB, a table called Student with the required sample data.
Example: Using DataTable in C#
We need to fetch all the data from the student table and then need to store the data in a data table and finally using a for each loop to display the data in the console. The following code exactly does the same thing. In the following example, we are creating a data table and filling the data table using the Fill method of the SqlDataAdapter object.
Output:
Copying and Cloning the DataTable in C#:
If you want to create a full copy of a data table, then you need to use the Copy method of the DataTable object which will copy not only the DataTable data but also its schema. But if you want to copy the data table schema without data, then you need to use the Clone method of the data table. The following example shows the use of both the clone and copy methods.
Output:
Deleting Data Row from a DataTable in C#:
You can delete a DataRow from the DataRowCollection by calling the Remove method of the DataRowCollection, or by calling the Delete method of the DataRow object.
The Remove method will remove the row from the collection whereas the Delete method marks the DataRow for removal. The actual removal will occur when you call the AcceptChanges method. If you want to roll back, then you need to use the RejectChanges method which will roll back to the previous state. The RejectChanges method will copy the Original data row version to the Current data row version.