2011-07-16 99 views
0

我很努力地輸出這個多數組,我已經嘗試循環使用每個循環...這是我看到當我插入一個斷點,數組'響應'是存儲,所以我將如何去寫這些控制檯輸出一個多數組

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 

非常感謝

+0

你是什麼'FO達到'代碼? –

回答

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]); 
    } 
} 
+0

感謝您的回覆,'item'出現錯誤,指出它在當前上下文中不存在。 – user826436

+0

@user:這是一個'項目'中的錯字而不是'int item'沒有固定。 –

+0

謝謝,但是你添加的第二個循環工作了一個治療...非常感謝你 – user826436