I'm stumped, and could be being very stupid - but I can't figure this one out.
I have some data which is being converted to an ArrayList. The data looks like this:
[ ["a", "b", "c"], ["1", "2", "3"] ]
So essentially, it's an array of string arrays. I'd love to get it into this format List<List<string>>, so I can access and manipulate the data easily - but I can't figure out how to do it!
As ArrayList is not strongly typed, I'm getting into a world of trouble trying to cast the first element of the ArrayList into anything useful.
As you can see from the snippet below, the ArrayList has two elements, each with 26 elements (which is representative of my data, there's two entries of 26 strings).

Can anyone show me how to turn an ArrayList representation of the data above, into a List<List<string>> please?
Thanks!!
ArrayListof arrays? or anArrayListofArrayList? Or anArrayListof something else? – Jeff Mercado Jun 4 '12 at 7:03ArrayListofArrayList– Stretch Jun 4 '12 at 7:08