OpenTK.Graphics.Rectangle.GetHashCode C# (CSharp) Method

GetHashCode() public method

GetHashCode Method
Calculates a hashing value.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return (height + width) ^ x + y;
        }