3 レベルのギザギザ配列を作成しようとしています。
これが私のコードです:
int[][, ,][,] x = new int[1][, ,][,]{
new int[1,1,1][,] {
new int[7,8]
}
};
次のエラーが表示されます。A nested array initializer is expected
私は何を間違っていますか?