ImageMagick.MagickGeometry.GetHashCode C# (CSharp) Метод

GetHashCode() публичный Метод

Serves as a hash of this type.
public GetHashCode ( ) : int
Результат 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();
    }