BMAPI.Point2.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return (int)Math.Sqrt(Math.Pow(X, 2) + Math.Pow(Y, 2));
        }