Is their ANY way to do something like:
for (int x=1; x<3; x++) {string MyArray[1][x]={"-"};}
Assuming the array has already been defined? I really don't want to have to do:
MyArray[1]={blah}
MyArray[2]={blah}
MyArray[3]={blah}
etcetera etcetera
I'm not necessarily looking for efficiency but seriously, initializing 50 arrays looks very messy and ugly.