Evbpc.Framework.Drawing.PointF.GetHashCode C# (CSharp) Method

GetHashCode() public method

Gets a hash code for the current PointF.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            int hash = 17;

            unchecked
            {
                hash = hash * 23 + _x.GetHashCode();
                hash = hash * 23 + _y.GetHashCode();
            }

            return hash;
        }