Example #1
0
 private static List <Student> InputStudentList(int n)//Du lieu nhap tu ban phim
 {
     listStudent = new List <Student>();
     for (int i = 0; i < n; i++)
     {
         Student temp = new Student();
         temp.Input();
         listStudent.Add(temp);
     }
     return(listStudent);
 }