C#二维list怎么使用
时间: 2023-07-16 10:14:02 浏览: 106
C# List用法详解
在C#中,可以使用List<List<T>>来表示二维数组。其中T是该数组中元素的类型。
以下是如何使用二维List:
1.创建一个二维List对象:
```csharp
List<List<int>> my2DList = new List<List<int>>();
```
2.添加元素:
```csharp
my2DList.Add(new List<int> { 1, 2, 3 });
my2DList.Add(new List<int> { 4, 5, 6 });
my2DList.Add(new List<int> { 7, 8, 9 });
```
3.访问元素:
```csharp
int value = my2DList[1][2]; // value is 6
```
4.遍历二维List:
```csharp
foreach (List<int> innerList in my2DList)
{
foreach (int value in innerList)
{
Console.Write(value + " ");
}
Console.WriteLine();
}
```
以上就是使用C#二维List的基本方法。
阅读全文