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

  • SEARCH
  • Home
  • 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 8256327
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T01:50:02+00:00 2026-06-08T01:50:02+00:00

I am trying to make a Dictionary in C# that uses a boolean array

  • 0

I am trying to make a Dictionary in C# that uses a boolean array for its keys.

 Dictionary<bool[], string> 

The bool array has fixed length of 1000, and all are the same length. I’m having trouble with the hashcode and the common method of an ‘exclusive or’ doesn’t make as much sense because of the length of the array.

Similar questions on StackOverflow are addressed with the ‘exclusive or’ in the GetHashCode method. I don’t think that works in this context. I would like to use it as:

 Dictionary<bool[], string> myDict = 
             new Dictionary<bool[], string>(EqualityComparer);

where EquaityComparer does something like:

   public class EqualityComparer : IEqualityComparer<bool[]>
    {
        public bool Equals(bool[] x, bool[] y)
        {
            return x.SequenceEqual(y);
        }

        public int GetHashCode(bool[] x)
        {
            // this part doesn't work correctly
            int hc = x.GetHashCode();
            return hc;
        }
    }

Of course all of the usual concerns about the bool array being mutable and the size of any derived key being relevant to performance apply here…though I don’t have a solution.

  • 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-06-08T01:50:05+00:00Added an answer on June 8, 2026 at 1:50 am

    Both your Equals and HashCode are incorrect.

    Presumably you wish to use SequenceEqual to compare the arrays for equality, or else a simple for loop.

    To calculate a hashcode you can use any of the standard methods. It is very important that if two items compare equal then they must have the same hash.

    Example

    public int GetHashCode(bool[] x)
    {
        int result = 29;
        foreach (bool b in x)
        {
            if (b) { result++; }
            result *= 23;
        }
        return result;
    }
    

    Related

    • Guidelines and rules for GetHashCode
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

hey all, i been trying to make a class that uses a dictionary to
I'm trying make an entity with doctrine that has three associations with other entities
Trying to make this jQuery filter that uses .find case-insensitive. For example, when the
I'm trying to make a dictionary in Python that I can sort through but
I want to make a dictionary that has named LINQ Expressions, since I cannot
I'm trying to match up elements in an array to dictionary keys. More specifically,
I'm trying to make a dictionary store a map of delegates that correspond to
So what I'm trying to do is make a dictionary of people and their
I'm currently trying to make a class that can register strings as identifiers and
I'm trying to make Fluent NHibernate's automapping ignore a Dictionary property on one of

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.