I need an array of integer arrays and string in C#
[
["Item 1",[1,2,3,4,5,6]],
["Item 1",[1,2,3,4,5,6]],
["Item 1",[1,2,3,4,5,6]],
["Item 1",[1,2,3,4,5,6]]
]
I can not think of any correct possible approach to this problem. I came to this snippet below.
string[,] items = new string[10, 2];
for(int 1 = 0; i<10; i++){
items[i, 0] = "Item " + i;
items[i, 1] = new int[10];
}
How can I get the array I need?