CyrusBuilt.MonoPi.BitSet.GetHashCode C# (CSharp) Метод

GetHashCode() публичный Метод

Gets a hash code value for this bit set. The hash code depends only on which bits are set within this instance.
public GetHashCode ( ) : int
Результат int
		public override int GetHashCode() {
			long h = 1234L;
			for (Int32 i = this._bits.Length; --i >= 0;) {
				h ^= this._bits[i] * (i + 1);
			}
			return (Int32)((h >> 32) ^ h);
		}