Does some body how to create n(for example n=10000) arrays with a for loop which each array has its own index?
Array[,] number 1
Array[,] number 2
Array[,] number 3
.
.
.
I tried this code:
for (i=1;i<=10000;i++) { // create 2-dim array with index i }