System.Drawing.Drawing2D.Matrix.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return transform.GetHashCode ();
        }

Usage Example

Ejemplo n.º 1
0
 public override int GetHashCode()
 {
     return((int)wrapMode ^ gradientTransform.GetHashCode() ^ rectangle.GetHashCode() ^ centerPoint.GetHashCode());
 }