R
Ricardo
how can i acess the members of an array that i put into a arraylist, like
this:
int[] dez = new int[5];
ArrayList arList = new ArrayList();
arList.add(dez);
I want to get the dez[3] value.
[]s...
this:
int[] dez = new int[5];
ArrayList arList = new ArrayList();
arList.add(dez);
I want to get the dez[3] value.
[]s...