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 4274124
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T07:48:18+00:00 2026-05-21T07:48:18+00:00

I need to generate a unique hash code for an object, based on its

  • 0

I need to generate a unique hash code for an object, based on its contents, e.g. DateTime(2011,06,04) should equal DateTime(2011,06,04).

  • I cannot use .GetHashCode() because it might generate the same hash code for objects with different contents.
  • I cannot use .GetID from ObjectIDGenerator as it generates a different hash code for objects with the same contents.
  • If the object contains other sub-objects, it needs to recursively check these.
  • It needs to work on collections.

The reason I need to write this? I’m writing a caching layer using PostSharp.

Update

I think I may have been asking the wrong question. As Jon Skeet pointed out, to be on the safe side, I need as many unique combinations in the cache key as there are combinations of potential data in the object. Therefore, the best solution might be to build up a long string that encodes the public properties for the object, using reflection. The objects are not too large so this is very quick and efficient:

  • Its efficient to construct the cache key (just convert the public properties of the object into a big string).
  • Its efficient to check for a cache hit (compare two strings).
  • 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-21T07:48:19+00:00Added an answer on May 21, 2026 at 7:48 am

    If you need to create a unique hash code, then you’re basically talking about a number which can represent as many states as your type can have. For DateTime than means taking the Ticks value and the DateTimeKind, I believe.

    You may be able to get away with assuming that the top two bits of the Ticks property are going to be zero, and using those to store the kind. That means you’re okay up until the year 7307 as far as I can tell:

    private static ulong Hash(DateTime when)
    {
        ulong kind = (ulong) (int) when.Kind;
        return (kind << 62) | (ulong) when.Ticks;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to generate a unique code from a single PC, my software will
I need to generate 10,000 unique identifiers in Java. The identifiers should be a
I need to generate a unique six digit alpha-numeric code. To save in my
I need to generate a nine digit numeric code (random preferably) which is unique
Hi i need to generate 9 digit unique account numbers. Here is my pseudocode:
I need to generate unique 64 bits integers from Python. I've checked out the
I need to generate unique invoice numbers for my Access (2010) database. The numbers
Is there a way to generate a unique ref for a user? Maybe based
I want to generate unique and random numbers or IDs which I can use
I need to generate unique id attributes within the struts iterator on the lines

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.