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();
		}