BExplorer.Shell.Interop.NativePoint.GetHashCode C# (CSharp) Method

GetHashCode() public method

Gets a hash code for the NativePoint.
public GetHashCode ( ) : int
return int
		public override int GetHashCode() {
			int hash = X.GetHashCode();
			hash = hash * 31 + Y.GetHashCode();
			return hash;
		}
	}