String user1State1Student;
String user2State1Student;
String user3State1Student;
etc.
String user1State2Student;
String user2State3Student;
String user3State4Student;
etc. up to the 500
then i have a loops and this is how i get the variables in a single line
System.Reflection.FieldInfo aboriginal = this.GetType().GetField("user" + i.ToString() + "State" + j.ToString() + "Student");
then i have another vars of datatable type
String tbl_user1State1Student;
String tbl_user2State1Student;
String tbl_user3State1Student;
etc.
String tbl_user1State2Student;
String tbl_user2State3Student;
String tbl_user3State4Student;
etc. up the 500
How do i get all 500 tables in a single line just like i did that with the string variables?
Thank you
Go to the complete details ...