Difference between DataTable.Clone ( ) and DataTable.Copy ( ) ?

  • Thread starter Thread starter Gordian
  • Start date Start date
G

Gordian

Hello,
does anyone knows the difference between:

DataTable.Clone ( )
DataTable.Copy ( )

Thanks
Gordian
 
DataTable.Clone ( )
The schema and all other things belonging to that
DataTable.Copy ( ) The schema and the table
Is also a solution for your other question however probably more work and
surely more expensive for the program.

I hope this helps,

Cor
 
Back
Top