[ad_1]
やあ、
私は List
私が試したこと:
たとえば、Forサイクルの書き方を知っている人はいますか? それとも他のサイクル?
前もって)ご返信に感謝いたします
デビッド
解決策 1
これを試して:
C#
List<int> list = new List<int> { 0, 4, 6, 8, 9, 11, 14 }; for (int index = 0; index < list.Count - 1; index++) { Console.WriteLine($"{list[index]}, {list[index + 1]}"); } }
解決策 2
C#
for (int i = 0; i < list.Count; ++i) { if (i == list.Count - 1) // the last item break; // list[i] and list[i + 1] are the next two items }
上記の OriginalGriff の解決策はさらに簡単です。
[ad_2]
コメント