My C# project is a Windows form.
I have three text files containing exam scores for separate class sections in my bin/debug folder.
This is the part I really need help with: I need to store the files in a three row jagged array divided by section .
Lastly, using the jagged array, I need to display each of these calculations in text boxes:
The average score for each individual section
The average score for all sections
The highest score of all sections
The lowest score of all sections.
Section1.txt:
 87
 93
 72
 98
 65
 70
 89
 78
 77
 66
 92
 72
Section2.txt:
 71
 98
 93
 79
 84
 90
 88
 91
Section3.txt:
 88
 81
 56
 72
 69
 74
 80
 66
 71
 73
 
     
    