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
  • 2 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

Hi i need to generate 9 digit unique account numbers. Here is my pseudocode:
I need to generate a unique integer id for a string. Reason: I have
i'm trying to generate a unique id using this code: $RCode = md5(uniqid(rand(), true));
Possible Duplicate: How to generate 8 bytes unique id from GUID? I need a
I need generate thumbnails for a bunch of jpegs (200,000+) but I want to
I need to generate a random integer between 1 and n (where n is
I need to generate some passwords, I want to avoid characters that can be
I need to generate thumbnails from a set of jpg's that need to have
I need to generate a directory in my makefile and I would like to
I need to generate multiple random values under SQL Server 2005 and somehow this

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.