用于合并两个字典的 C# 程序


设置两个字典 −

Dictionary < string, int > dict1 = new Dictionary < string, int > ();
dict1.Add("laptop", 1);
dict1.Add("desktop", 2);
Dictionary < string, int > dict2 = new Dictionary < string, int > ();
dict2.Add("desktop", 3);
dict2.Add("tablet", 4);
dict2.Add("mobile", 5);

现在,使用 HashSet 和 UnionWith() 方法合并两个字典 −

HashSet < string > hSet = new HashSet < string > (dict1.Keys);
hSet.UnionWith(dict2.Keys);

完整代码如下 −

示例

using System;
using System.Collections.Generic;
class Program {
   static void Main() {
      Dictionary < string, int > dict1 = new Dictionary < string, int > ();
      dict1.Add("laptop", 1);
      dict1.Add("desktop", 2);

      Dictionary < string, int > dict2 = new Dictionary < string, int > ();
      dict2.Add("desktop", 3);
      dict2.Add("tablet", 4);
      dict2.Add("mobile", 5);

      HashSet < string > hSet = new HashSet < string > (dict1.Keys);
      hSet.UnionWith(dict2.Keys);
      Console.WriteLine("Merged Dictionary...");

      foreach(string val in hSet) {
         Console.WriteLine(val);
      }
   }
}

更新于:2020 年 6 月 22 日

1 千次加查看

开启 职业生涯

完成课程并获得认证

开始学习
Advertisement