5
Answers

data table to another data table

Ask a question
I have a data table .I want to copy some column to another data table .
  1. data table dt=new data table();//Having four columns  

  2. data table dtcopy=new data table();//I want to copy the datatable dt first and last column  to this data table   
 This is my data table(dt) column
 Col1col2col3col4
 
My result is:(dtcopy)
 Col1 col4
 

Answers (5)