Bamboo.Prevalence.Indexing.FullText.Token.GetHashCode C# (CSharp) 메소드

GetHashCode() 공개 메소드

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