- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C# program to merge two Dictionaries
Set the two dictionaries −
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);
Now use HashSet and UnionWith() method to merge the two dictionaries −
HashSet < string > hSet = new HashSet < string > (dict1.Keys); hSet.UnionWith(dict2.Keys);
Here is the complete code −
Example
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); } } }
- Related Articles
- Python program to merge two Dictionaries
- Python program to merge to dictionaries.
- How can we merge two Python dictionaries?
- How to merge two Python dictionaries in a single expression?
- How to merge multiple Python dictionaries?
- C# program to find Union of two or more Dictionaries
- Program to merge two binary trees in C++
- C# program to merge two sorted arrays into one
- Python Program to Concatenate Two Dictionaries Into One
- Python – Merge Dictionaries List with duplicate Keys
- Java Program to Merge two lists
- How to compare two dictionaries in C#?
- C# Program to merge sequences
- C++ Program to Implement Merge Sort
- Python Program to Merge Two Lists and Sort it

Advertisements