C# 中的 UnionWith 方法


在 C# 中使用 UnionWith 方法可以获取两个集合的并集,即唯一元素。

假设以下是我们的词典 −

Dictionary < string, int > dict1 = new Dictionary < string, int > ();
dict1.Add("pencil", 1);
dict1.Add("pen", 2);
Dictionary < string, int > dict2 = new Dictionary < string, int > ();
dict2.Add("pen", 3);

现在,使用 HashSet 和 UnionWith 获取并集 −

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

以下是完整代码 −

示例

 现场演示

using System;
using System.Collections.Generic;

public class Program {
   public static void Main() {
      Dictionary < string, int > dict1 = new Dictionary < string, int > ();
      dict1.Add("pencil", 1);
      dict1.Add("pen", 2);

      Dictionary < string, int > dict2 = new Dictionary < string, int > ();
      dict2.Add("pen", 3);

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

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

输出

Merged Dictionary...
pencil
pen

更新于: 22-6-2020

486 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告