I want to get a DataTable from DataGridView of the Grid values.
In other words DataTable same as DataGridView Values
you can use the following code also, this code fill not effect on your DataGridView when you do some add or delete rows in the datatable
DataTable dt = new DataTable(); dt = Ctype(dataGridView1.DataSource,DataTable).copy();