最佳答案
如何在 C # 中得到一个多维数组的行或列的长度?
例如:
int[,] matrix = new int[2,3];
matrix.rowLength = 2;
matrix.colLength = 3;