Org.Mozilla.Classfile.FieldOrMethodRef.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
		public override int GetHashCode()
		{
			if (hashCode == -1)
			{
				int h1 = className.GetHashCode();
				int h2 = name.GetHashCode();
				int h3 = type.GetHashCode();
				hashCode = h1 ^ h2 ^ h3;
			}
			return hashCode;
		}