C# Dictionary 是一种用于存储键值对的数据结构,它可以将一个唯一
的键映射到一个值上。而去重则是指在集合中移除重复的元素。在 C#
中,我们可以使用 Dictionary 来实现去重的功能。
Dictionary 是按照键来存储和访问数据的,因此如果我们想要去重,
就需要使用一个唯一的键来作为 Dictionary 的键。下面是一个示例代
码:
```
//创建一个空的 Dictionary
Dictionary<int, string> dict = new Dictionary<int, string>();
//向 Dictionary 中添加元素
dict.Add(1, "Apple");
dict.Add(2, "Banana");
dict.Add(3, "Orange");
dict.Add(4, "Apple");
//遍历 Dictionary 中的元素
foreach (KeyValuePair<int, string> kvp in dict)
{
Console.WriteLine("Key = {0}, Value = {1}", kvp.Key, kvp.Value);