ImageMagick.MagickGeometry.GetHashCode C# (CSharp) Method

GetHashCode() public method

Serves as a hash of this type.
public GetHashCode ( ) : int
return int
    public override int GetHashCode()
    {
      return
        Width.GetHashCode() ^
        Height.GetHashCode() ^
        X.GetHashCode() ^
        Y.GetHashCode() ^
        IsPercentage.GetHashCode() ^
        IgnoreAspectRatio.GetHashCode() ^
        Less.GetHashCode() ^
        Greater.GetHashCode() ^
        FillArea.GetHashCode() ^
        LimitPixels.GetHashCode();
    }