OpenTK.Graphics.Rectangle.GetHashCode C# (CSharp) Метод

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

GetHashCode Method
Calculates a hashing value.
public GetHashCode ( ) : int
Результат int
        public override int GetHashCode()
        {
            return (height + width) ^ x + y;
        }