Y
yaya via DotNetMonster.com
Let's say I wana create a set of arrays A1,A2,A3....
so if I use a for loop, can I create the arrays ?
for(int i=0; i<3; i++)
{
int []A(i+1) = new int[5];
} ^
|
A1,A2,A3
so if I use a for loop, can I create the arrays ?
for(int i=0; i<3; i++)
{
int []A(i+1) = new int[5];
} ^
|
A1,A2,A3