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

두 개의 키 사전을 결합하는 C# 프로그램

<시간/>

먼저 결합할 사전을 설정합니다 -

Dictionary <string, int> dict1 = new Dictionary <string, int> ();
dict1.Add("one", 1);
dict1.Add("Two", 2);
Dictionary <string, int> dict2 = new Dictionary <string, int> ();
dict2.Add("Three", 3);
dict2.Add("Four", 4);

이제 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("one", 1);
      dict1.Add("Two", 2);
      Dictionary <string, int> dict2 = new Dictionary <string, int> ();
      dict2.Add("Three", 3);
      dict2.Add("Four", 4);
      HashSet <string> hSet = new HashSet <string> (dict1.Keys);
      hSet.UnionWith(dict2.Keys);
      Console.WriteLine("Union of Dictionary...");
      foreach(string val in hSet) {
         Console.WriteLine(val);
      }
   }
}

출력

Union of Dictionary...
one
Two
Three
Four