I have a generic list
How do I remove an item?
EX:
Class Student { private number; public Number { get( return number;)
Maybe you can use a Dictionary instead of the List.
Dictionary
List
When you add a Student, add its ID or Name or whatever can uniquely identify it. Then you can simply call myStudents.Remove(myStudentId)
myStudents.Remove(myStudentId)