G
Guest
I tried making a 3x3 array like
static int[, ,] Table = {{1,2,3},{4,5,6},{7,8,9}};
The example from the docs is for a two dimensioned array and it works fine.
Are dimensions greater than 2 disallowed?
static int[, ,] Table = {{1,2,3},{4,5,6},{7,8,9}};
The example from the docs is for a two dimensioned array and it works fine.
Are dimensions greater than 2 disallowed?