I have an arraylist of string objects, that then gets added into and arraylist of arraylists.
As a java developer I used to use Vectors, I know now defunct but the name sounds great haha!!, I also used ArrayList which both had access to the sub arraylist by means of, for example
ArrayList<String> array1 = new ArrayList<String>();
array.add("test");
ArrayList<ArrayList> array2 = new ArrayList<ArrayList>()
array2.add(array1);
string var = array2.get(1).get(2);
What is this equivilent in C#?