My doubt is that is possible to access the values of the array inside of arraylist? Example:
int[] intArray = new int[];
string[] stringArray = new string[];
stringArray[0] = "Bob";
stringArray[1] = "John";
stringArray[2] = "Alex";
intArray[0] = 5;
intArray[1] = 7;
intArray[2] = 13;
ArrayList listOfArrays = new ArrayList() {intArray , stringArray };
In that example, its possible to access (print) the value of array (inserting the index value) inside of ArrayList?