Deleting columns with rows values from data table
- by Royson
I want to delete specific column from my datable before bounding it to a grid view.
I tried with
finalTable.Columns.RemoveAt(0);
finalTable.Columns.RemoveAt(1);
but it does not delete rows values belonging to that column..
How can we delete column with row values??