কম্পিউটার

দুটি অভিধানকে একত্রিত করতে 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);
      }
   }
}

  1. C++ এ দুটি বাইনারি স্ট্রিং যোগ করার জন্য প্রোগ্রাম

  2. পাইথন প্রোগ্রাম দুটি সংখ্যা যোগ করতে

  3. পাইথন প্রোগ্রাম দুটি অভিধানকে একত্রিত করতে

  4. পাইথন প্রোগ্রাম অভিধানে একত্রিত করতে।