c#创建一个Dictionary<int, string>泛型集合,向集合中添加三组元素,使用foreach循环遍历集合中的元素
时间: 2024-03-23 12:41:43 浏览: 94
好的,以下是代码实现:
```csharp
using System;
using System.Collections.Generic;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
// 创建Dictionary<int, string>泛型集合
Dictionary<int, string> dict = new Dictionary<int, string>();
// 向集合中添加三组元素
dict.Add(1, "apple");
dict.Add(2, "banana");
dict.Add(3, "orange");
// 使用foreach循环遍历集合中的元素
foreach (KeyValuePair<int, string> kvp in dict)
{
Console.WriteLine("Key: " + kvp.Key + ", Value: " + kvp.Value);
}
Console.ReadKey();
}
}
}
```
输出结果为:
```
Key: 1, Value: apple
Key: 2, Value: banana
Key: 3, Value: orange
```
阅读全文