Lucene.Net.Search.FieldCacheImpl.Entry.GetHashCode C# (CSharp) Method

GetHashCode() public method

Composes a hashcode based on the field and type.
public GetHashCode ( ) : int
return int
            public override int GetHashCode()
            {
                return field.GetHashCode() ^  (custom == null?0:custom.GetHashCode());
            }
        }
FieldCacheImpl.Entry