Hi all,
I have a multi-dimensional array that i want to assign variables to certain parts however, this code is not working where have i gone wrong?
regards,Code:
String[][][] DetailsArray = new String[100][100][100];
DetailsArray[i][][] = surname;
DetailsArray[][i][] = forename;
DetailsArray[][i][] = age.toString();
Jon

