输出多阵列

时间:2011-07-16 14:48:27

标签: c# arrays

我正在努力输出这个多数组,我已经尝试循环使用for for each循环...这就是我在插入一个断点时看到的,数组'响应'正在存储,所以如何我将这些写入控制台

response    Count = 6   System.Collections.Generic.List<int[]>
[0] {int[1]}    int[]
     [0]    1577    int
[1] {int[0]}    int[]
[2] {int[0]}    int[]
[3] {int[0]}    int[]
[4] {int[0]}    int[]
[5] {int[6]}    int[]
     [0]    31  int
     [1]    246 int
     [2]    448 int
     [3]    663 int
     [4]    864 int
     [5]    1734    int

非常感谢

1 个答案:

答案 0 :(得分:1)

foreach (int[] subList in response)
{
    foreach (int item in subList)
    {
        Console.WriteLine(item);
    }
}

使用for循环:

for (int subListIndex = 0; subListIndex < response.Count; subListIndex++)
{
    for (int itemIndex = 0; itemIndex < response[subListIndex].Length; itemIndex++)
    {
        Console.WriteLine(response[subListIndex][itemIndex]);
    }
}