Use the same structure as you used before:

Code:
for (int i = 0; i < region.Length; i++)
{
    for (int j = 0; j < region[i].Length; j++)
    {
        //Assignment goes here
    }
}