At the end of this lesson, you will be able to:
go over example from below
// global variables
public enum GENDER
{
male,
female
}
public struct Student
{
public string firstName;
public string lastName;
public char middleInitial;
public GENDER sex; // GENDER is an ENUM defined above
public byte grade;
public bool identified;
}
List<Student> aClassOfStudents = new List<Student>();