If I have an array of student test scores for multiple students(example: 5 students with 5 grades for each)
Dim aStudent1Grades() As New String = {Me.tboStudent1Grade1.Text, Me.tboStudent1Grade2.Text, Me.Student1Grade3.Text, Me.Student1Grade4.Text, Me.Student1Grade5.Text}
(create 4 other arrays for the other 4 students in the same fashion)
THEN I would like to create an array and store these 5 student arrays into that so I can loop through it and do all my data validation testing.
Something like:
Dim aAllGrades() As New Array = {aStudent1Grades(), aStudent2Grades(), aStudent3Grades(), aStudent4Grades(), aStudent5Grades()}
I would use a For loop to loop through the array of arrays which will have another For loop inside that to loop through each aStudentGrade array to test the data.
Is storing arrays within another array possible? Thanks