如何在 C# 中的数组列表中打印数组的单个单元格
how to print a single cell of an array inside a list of arrays in c#
我有一个数组列表:
List<int[]> a = new List<int[]>();
然后我在里面放了几个数组
int[] b = new int[3] {1, 2, 3};
int[] c = new int[4] {4, 5, 6, 7};
a.Add(b);
a.Add(c);
我怎样才能打印 List a
中的 b[1]
?
您可以通过写入
访问它
Console.WriteLine(a[0][1]);
我有一个数组列表:
List<int[]> a = new List<int[]>();
然后我在里面放了几个数组
int[] b = new int[3] {1, 2, 3};
int[] c = new int[4] {4, 5, 6, 7};
a.Add(b);
a.Add(c);
我怎样才能打印 List a
中的 b[1]
?
您可以通过写入
访问它Console.WriteLine(a[0][1]);