Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

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