var array[,]=new ベクトル型の名前[100, 200];

for (int i = 0; i < 4; i++)
{
for (int j = 0; j < 4; j++)

array[i, j] = ベクトルオブジェクト;
}
}