Create a DataTable

  • Thread starter Thread starter Tony Johansson
  • Start date Start date
T

Tony Johansson

hello!

If I create two DataTable like this
DataTable dt1 = new DataTable();
and
DataTable dt2 = new DataTable("MyTest");

How could I extract the name string "MyTest" that I passed into the C-tor of
DataTable ?

//Tony
 
hello!

If I create two DataTable like this
DataTable dt1 = new DataTable();
and
DataTable dt2 = new DataTable("MyTest");

How could I extract the name string "MyTest" that I passed into the C-torof
DataTable ?

DataTable.TableName
 
hello!

If I create two DataTable like this
DataTable dt1 = new DataTable();
and
DataTable dt2 = new DataTable("MyTest");

How could I extract the name string "MyTest" that I passed into the C-torof
DataTable ?

DataTable.TableName
 
Back
Top