Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6254019
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T14:07:12+00:00 2026-05-24T14:07:12+00:00

Using C#, I want to compare two dictionaries to be specific, two dictionaries with

  • 0

Using C#, I want to compare two dictionaries to be specific, two dictionaries with the same keys but not same values, I found a method Comparer but I’m not quite sure how can I use it? Is there a way other than iterating through each key?

Dictionary
[
    {key : value}
]

Dictionary1
[
    {key : value2}
]
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T14:07:13+00:00Added an answer on May 24, 2026 at 2:07 pm

    If all you want to do is see if the keys are different but not know what they are, you can use the SequenceEqual extension method on the Keys property of each dictionary:

    Dictionary<string,string> dictionary1;
    Dictionary<string,string> dictionary2;
    var same = dictionary1.Count == dictionary2.Count && dictionary1.Keys.SequenceEqual(dictionary2.Keys);
    

    If you want the actual differences, something like this:

    var keysDictionary1HasThat2DoesNot = dictionary1.Keys.Except(dictionary2.Keys);
    var keysDictionary2HasThat1DoesNot = dictionary2.Keys.Except(dictionary1.Keys);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two large dictionaries with unique keys but possibly overlapping values. I want
I have two generic Dictionaries. Both have the same keys, but their values can
I want to compare two values at runtime using reflection. I was using Comparer.Default.Compare(x,y)
I want to compare two routes to check if they are same or not
Using VB6 I want to compare the system date, if the exe should not
I want to compare two lists. Since we code to interface using List ,
I want to compare two double values till the second digit from decimal point.
I want to be able to compare the two following objects for likeness using
I want to create a merge that will compare two tables and insert not
How do I compare two dates in Lingo? To be specific, I want to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.