在C#中,你可以使用for
循環或者foreach
循環來遍歷數組。下面是兩種方法的示例:
for
循環遍歷數組:int[] array = new int[] { 1, 2, 3, 4, 5 };
for (int i = 0; i < array.Length; i++)
{
Console.WriteLine("Element at index " + i + ": " + array[i]);
}
foreach
循環遍歷數組:int[] array = new int[] { 1, 2, 3, 4, 5 };
foreach (int element in array)
{
Console.WriteLine("Element: " + element);
}
在這兩個示例中,我們都遍歷了一個整數數組,并打印出了每個元素。for
循環使用索引來訪問數組的元素,而foreach
循環則直接訪問數組的元素。