在C#中,可以使用foreach
循環來遍歷字典(Dictionary)
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// 創建一個字典實例
Dictionary<string, int> dictionary = new Dictionary<string, int>();
// 向字典中添加元素
dictionary.Add("apple", 1);
dictionary.Add("banana", 2);
dictionary.Add("orange", 3);
// 使用 foreach 循環遍歷字典
foreach (KeyValuePair<string, int> entry in dictionary)
{
Console.WriteLine($"Key: {entry.Key}, Value: {entry.Value}");
}
}
}
在這個示例中,我們首先創建了一個名為dictionary
的字典實例,然后向其中添加了三個元素。接下來,我們使用foreach
循環遍歷字典。在循環內部,我們可以訪問當前鍵值對的鍵和值。最后,我們使用Console.WriteLine()
輸出每個鍵值對的信息。