Computer >> Máy Tính >  >> Lập trình >> C#

C # Chương trình kết hợp Từ điển của hai phím

Đầu tiên, đặt các Từ điển được kết hợp -

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);

Bây giờ, sử dụng HashSet để kết hợp chúng. Phương thức được sử dụng cho cùng mục đích là UnionWith () -

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

Sau đây là mã hoàn chỉnh -

Ví dụ

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);
      }
   }
}

Đầu ra

Union of Dictionary...
one
Two
Three
Four