标签: c# .net matrix multidimensional-array
我想知道这些类型的矩阵声明之间有什么区别。这些类型似乎具有相同的方法和属性。
int[][] first = new int[0][]; int[,] second = new int[0,0];