开发者

How do I implement this Custom Equality?

I have a Symbol entity that when compared to a开发者_开发问答nother has this behavior:

  1. If FileName & FileDate are Equal, return True
  2. If FileDate is different, then Compare the CRC32 of each and return that Value

I'm wondering how to implement this Equality especially the GetHashCode() in this case.


I'd say (based on my understanding of your example), something like this. You could include a more complex hash code that parallels your FileDate vs CRC32, but really since the common glue is always the FileName you could just use that as your surrogate hash code.

Remember, Equal() objects should never have different hash codes, but !Equal() objects may have the same one (it's just a potential collision).

Also you'll want to be careful about the fields that are part of the hash code being mutable, otherwise the hash code of the object can "change" which could be very bad in a Dictionary...

    public sealed class Symbol : IEquatable<Symbol>
    {
        public string FileName { get; set; }
        public DateTime FileDate { get; set; }
        public long CRC32 { get; set; }

        public bool Equals(Symbol other)
        {
            if (other == null)
            {
                return false;
            }

            return FileName == other.FileName &&
                   (FileDate == other.FileDate || CRC32 == other.CRC32);
        }

        public override bool Equals(object obj)
        {
            return Equals(obj as Symbol);
        }

        public override int GetHashCode()
        {
            // since FileName must be equal (others may or may not)
            // can use its hash code as your surrogate hash code.
            return FileName.GetHashCode();
        }
    }


     public override bool Equals(object obj)     
    {         
    var file = obj as Symbol;
    if ( file.FileName == FileName && file.FileDate == FileDate )
        return true
    else    
return Boolean Value of [Compare CRC Here];      
      } 

Here is how you can calculate the CRC on a file.

http://damieng.com/blog/2006/08/08/calculating_crc32_in_c_and_net

This is basically what James Michael Hare suggested I was just slower.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜