Ejemplo n.º 1
0
 public static void InputCycle(int count)
 {
     for (int i = 0; i < count; ++i)
     {
         var student = new Student();
         student.RandomGenerator();
         students_list.Add(student);
     }
 }