Bamboo.Prevalence.Indexing.FullText.Token.GetHashCode C# (CSharp) Method

GetHashCode() public method

Calculates a hashcode based on the properties Value and Position.
public GetHashCode ( ) : int
return int
		public override int GetHashCode()
		{
			return _position.GetHashCode() ^ _value.GetHashCode();
		}