using System.Collections.Generic;
public static void Main(string[] args)
List<Student> aStudent = new List<Student>();
aStudent.Add(new Student("Joe", 1234, "Spring2017"));
aStudent.Add(new Student("Bob", 321, "Fall2016"));
var capacity = aStudent.Capacity;
var count = aStudent.Count;
Console.WriteLine("The current capacity is {0} and the number of objects is {1}", capacity, count);
foreach (Student nums in aStudent)
Console.WriteLine("Name: {0}, ID: {1}, Entry Term: {2}", nums.getName(), nums.getId(), nums.getEntryTerm());
Console.WriteLine("In Reverse order after calling the Reverse method that is a part of the List class");
foreach (Student nums in aStudent)
Console.WriteLine("Name: {0}, ID: {1}, Entry Term: {2}", nums.getName(), nums.getId(), nums.getEntryTerm());
private string entryTerm;
public Student(string name, int id, string term){
public string getEntryTerm()