Hello!
Excuse me for my bad english, first.
I'm writing a programme that use an MS Access database.
I want to clone one structure of a table to an inexisting one.
I test with this code:
Code:
DataTable Dest = new DataTable("NewTable");
DataTable Source = New DataTable("OldTable");
Dest = Source.Clone();
that all and the new table doesn't be create why ?
How can i do that in C#?
Thank for your help.