System.Drawing.RectangleF.GetHashCode C# (CSharp) Method

GetHashCode() public method

Gets the hash code for this .
public GetHashCode ( ) : int
return int
        public override int GetHashCode() =>
            HashHelpers.Combine(
                HashHelpers.Combine(HashHelpers.Combine(X.GetHashCode(), Y.GetHashCode()), Width.GetHashCode()),
                Height.GetHashCode());