二维数组中的 GetLength() 和 GetLongLength() 区别,谁知道?
二维数组中的 GetLength() 和 GetLongLength() 区别,谁知道?
int[,] doubleArray = new int[2,3]; for(int i=0;i<doubleArray.GetLength(0);i++) { for(int j=0,j<doubleArray.GetLength(1);j++) { Console.WriteLine(doubleArray[i,j]); } }