Start a Console Application in Visual Studio for C# (.NET framework). Implement a class
Student that contains name, id and age of the student (assume the name and id are string,
and age is int). Remember to implement the properties (get / set methods) in the class
Student.
Also add in the class Student a method, GetInformation()
public string GetInformation()
{
// to be completed
}
that returns all the info of the student (the method should return a single string containing
the concatenation of name, id and age).
In the Main method:
- Create and add 10 objects of class Student in an array of Student objects
- Display the info (name, id and age) for all the students (use a loop) present in the array by
using you implemented method GetInformation.