tatton777
asked on
How do I decalre a new DataTable whose name is based on a string value
I had a string called zDefinedType, I want my DataTable to be able to dynamically name itself after the string.
PSEUDOCODE
string zDefinedType = "Generic";
DataTable textValueOf(zDefinedType) = New DataTable();
Any Ideas?
PSEUDOCODE
string zDefinedType = "Generic";
DataTable textValueOf(zDefinedType) = New DataTable();
Any Ideas?
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
A.