Write the code to instantiate a list studentList first using a non-generic structure and then using a generic structure. code example
Example: decalre an int list mvc
List<int> intList = new List<int>();
List<int> intList = new List<int>();