在C#中,可以使用while循環來遍歷數組。以下是一個示例代碼,演示如何使用while循環讀取數組中的元素:
using System;
class Program
{
static void Main()
{
int[] numbers = { 1, 2, 3, 4, 5 };
int i = 0;
while (i < numbers.Length)
{
Console.WriteLine(numbers[i]);
i++;
}
}
}
在上面的代碼中,我們定義了一個整數數組numbers
,然后使用while循環來遍歷數組中的元素。在每次循環中,我們打印出當前索引位置的元素,并遞增索引i
。通過這種方式,可以依次讀取數組中的所有元素。