please, can somebody help me?... I have this problem: I'm working with lists in C# and I'm using a List of Lists of strings. The problem is that I don't know how to access to a specific member of a list that is contained in another list. I'm just trying to print the value with a message box, but I can't. The code is like this: (is an example) List<List<string>> Names = new List<List<string>>(); List<string> Students = new List<string>(); then is the code where I add to the students list, the names of the students, and the code where I add that list to the Names list. Can somebody tell me how to show the first name of the list of students using a MessageBox? MessageBox.Show(Names[0].....????