I want to know how to create DataTable variable without explicitly referencing to the DataSet. For example I have this working example:
UsersDataSet.AddressDataTable address;
I would like to omit the UsersDataSet part, because It is being repeated numerous times in the code. I tried to define it with using:
using ManagingUsers.UsersDataSetTableAdapters;
But it still would not recognize AddressDataTable without UsersDataSet:
AddressDataTable address;
It says that the type or namespace name could not be found.
should do the trick
More info on using here