Is is possible to create a multidimensional list in C#. I can create an multidimensional array like so:
string[,] results = new string[20, 2];
but I would like to be able to use some of the features in a list or arraylist like being able to add and delete elements.