B
Blue Streak
What exactly is the difference (besides syntax) when you declare multi-
dimentional arrays this way?
int [] [] a = new int[3][3];
int [,] b = new int[3,3];
// What's the difference between a and b?
TIA...
dimentional arrays this way?
int [] [] a = new int[3][3];
int [,] b = new int[3,3];
// What's the difference between a and b?
TIA...