I have an arrayList called aL
that contains vectors.
ArrayList aL new ArrayList();
String[,] datos = new String[1,2];
elementos[0,0] = "Juan";
elementos[0,1] = "1258";
aL.add(datos);
String[,] datos = new String[1,2];
elementos[0,0] = "Pedro";
elementos[0,1] = "2684";
aL.add(datos);
The arrayList will be filled with vectors. The problem is that I do not know how to access the elements of the vectors that I am adding.
can you help me?