A: Listed below is a sample code snippet to implement an array of tuples.
//Array of Tuples (i.e. EmpName, EmpIDNum)
Tuple
{
Tuple.Create("Sam Nasr", 891),
Tuple.Create("Jim Smith", 358),
Tuple.Create("Lisa Jones", 962)
};
string FirstEmpName = EmpRecs[0].Item1;
string SecondEmpName = EmpRecs[1].Item1;
int SecondEmpIDNum = EmpRecs[1].Item2;
More information can be found at http://msdn.microsoft.com/en-us/library/dd413854(VS.95).aspx