Lucene.Net.Search.PhraseQuery.GetHashCode C# (CSharp) Method

GetHashCode() public method

Returns a hash code value for this object.
public GetHashCode ( ) : int
return int
		public override int GetHashCode()
		{
			return BitConverter.ToInt32(BitConverter.GetBytes(Boost), 0) ^ slop ^ terms.GetHashCode() ^ positions.GetHashCode();
		}
	}