在C#中,使用WriteLine
方法進行數組輸出時,需要遍歷數組并將每個元素依次輸出。這里有一個示例,展示了如何使用WriteLine
方法輸出整數數組:
using System;
class Program
{
static void Main()
{
int[] numbers = { 1, 2, 3, 4, 5 };
// 使用for循環遍歷數組并輸出每個元素
for (int i = 0; i < numbers.Length; i++)
{
Console.WriteLine(numbers[i]);
}
// 或者使用foreach循環遍歷數組并輸出每個元素
foreach (int number in numbers)
{
Console.WriteLine(number);
}
}
}
這個示例中,我們首先創建了一個整數數組numbers
,然后使用for
循環和foreach
循環分別遍歷數組并輸出每個元素。注意,Console.WriteLine
方法會自動在輸出的元素之間添加換行符,因此每個數組元素都會單獨占據一行。