ARCed.Scintilla.RECT.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return this.Left ^ ((this.Top << 13) | (this.Top >> 0x13))
              ^ ((this.Width << 0x1a) | (this.Width >> 6))
              ^ ((this.Height << 7) | (this.Height >> 0x19));
        }