c#计算二维数组长度
时间: 2023-07-27 19:08:54 浏览: 193
C#中的二维数组
5星 · 资源好评率100%
在 C# 中,可以使用以下代码计算二维数组的长度:
```csharp
int[,] array = new int[3, 4];
int rows = array.GetLength(0); // 获取行数,结果为 3
int cols = array.GetLength(1); // 获取列数,结果为 4
int length = array.Length; // 获取总元素个数,结果为 12
```
其中 `GetLength(0)` 和 `GetLength(1)` 方法分别获取数组的行数和列数,`Length` 属性获取总元素个数。
阅读全文