OT - a class that represents a single student should not be named Students. Don't pluralise names arbitrarily. That class should be named Student and a variable that referred to an array or collection of Student objects could be named students, much like your setting. Also, a ListBox that stores student data probably ought to be named studentsListBox. Descriptive names are always better than the default names, except for maybe in quick and dirty examples and demos.