G
Guest
is there a better way to fill an array then this
a is a auto generated value, always different.
its meant to loop through until the array is full of values, will this work?
int i=0;
while(array[array.Length-1] == null)
{
array = a;
i++;
}
a is a auto generated value, always different.
its meant to loop through until the array is full of values, will this work?
int i=0;
while(array[array.Length-1] == null)
{
array = a;
i++;
}