C# has multidimensional array, which is different from nested array.
int[,] arr=new int[3,2]{{1,2,3},{1,2,3}};
Perhaps this is similar to numpy something.
C# has multidimensional array, which is different from nested array.
int[,] arr=new int[3,2]{{1,2,3},{1,2,3}};
Perhaps this is similar to numpy something.