I have written a program that is supposed to get a list of names and information. Well, I got to solve this question a few classes, such as students and university have to answer. But the problem is where I plan to get students information
static void Main(string[] args)
{
    Console.WriteLine("Some students enter the information you want? ");
    Count = int.Parse(Console.ReadLine());
    University university = new University();        
    university.Add();
    university.Sort();
    university.Report();
    Console.ReadKey();
}
To solve this problem, I have to specify the number of students .
class University
{
    Student[] student = new Student[3]; 
     private int n = 0;
     public University()
     {
         for (int i = 0; i < 3; i++)
             student[i] = new Student();
     }
     public void Add()
     {
         Console.WriteLine();
         for (int i = 0; i < 3; i++)
         {
             student[n].Read();
             n++;
         }
     } 
For example, the number of students I have three. How do I create a way to enter the number of students who give information and do not default؟Instead of the number 3 is a variable that give the user the desired number.
 
     
     
     
    