Hello, Im creating a arraylist of arrays. The arrays inside is a array in this form: object[Control, int]
Having problems pulling the information out. THanks
Creation:
ArrayList
----
Adding:
configureValues[0, 0] = txt1;
configureValues[0, 1] = 2;
configureList.Add(configureValues);
---------------
Trying to retreive:
object
Thanks again.