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

두 개의 사전을 병합하는 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);
      }
   }
}