i need to declare 16x16 matrix blocks in a loop. Because i don't know how many blocks i must create. It changes acording to width. I have a code like this and name of the blocks must go like this: "block1, block2, block(i)" How can i declare this blocks inside of a loop.
for(int i = 0; i < width; i++)
{
int[,] block = new int[16, 16];
}