I want to be able to create a new Student in my TeacherGradebook program. My Student class has lots of fields like .FirstName, .MiddleName, .LastName, .HomePhone, .WorkPhone, .Grade(Quarter,GradeIndex).Value, etc.

I'm thinking about using a collection of students (rather than a static-sized array)

When I create a new Student, I'd like to do something like this....
dim s as new Student = {"Joe","Bob","Jones",,,,,} 'or whatever the correct syntax is

Do I need to do Overloads in a New sub within my Student Class or what?