In my code, I've got a class called "teacher" which has some arrays inside of it:
Code:
public class teacher
{
//monday
public bool[] mon = new bool[11];
//tuesday
public bool[] tue = new bool[11];
//wednesday
public bool[] wed = new bool[11];
//thursday
Leave a comment: