Org.Mozilla.Classfile.FieldOrMethodRef.GetHashCode C# (CSharp) 메소드

GetHashCode() 공개 메소드

public GetHashCode ( ) : int
리턴 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;
		}