Lucene.Net.Search.BooleanClause.GetHashCode C# (CSharp) 메소드

GetHashCode() 공개 메소드

Returns a hash code value for this object.
public GetHashCode ( ) : int
리턴 int
		public override int GetHashCode()
		{
			return Query.GetHashCode() ^ (Occur.MUST.Equals(occur)?1:0) ^ (Occur.MUST_NOT.Equals(occur)?2:0);
		}