i have created a class named employees to hold the employee information. the class looks as follows.
class Employee
{
private int employeeID;
private string firstName;
private string lastName;
private bool eligibleOT;
private int positionID;
private string positionName;
private ArrayList arrPhone;
private ArrayList arrSector;
as you can see i have created an array named arrSector. it takes the name of the sectors which the employee is associated. now i also want to take in the sector id along with the sector name.
my question is how do i implement the sector id as well as the sector name in a single arraylist variable.
i want to store the value of sector id as wel as the sector name together.
any help is appreciated.