Is it possible to implement a one-dimensional jagged array, with two-dimensional arrays in it? And How?
Yes you can. Just like any other jagged array:
int[][,] m = new int[5][,]; for (int i = 0; i < m.Length; i++) { m[i] = new int[2, 3]; }
Source: https://ru.stackoverflow.com/questions/620459/More articles:The search function of the element performs several times correctly, and then begins to produce an incorrect result.How to achieve a fixed time to insert and receive from the collection?The problem with Russian characters in jsonwhat is better to use for websocket on android?Get the value of the radio buttonHow to read data from the console?Error when working with DataGridViewHow to disable text selection in WebView?What is the reason HTTP request failed! HTTP / 1.1 400 Bad Request?On the hosting does not work authorization on the site using CURLAll Articles