AuraPhotoViewer.ResizeableWindow.RECT.GetHashCode C# (CSharp) Method

GetHashCode() public method

Return the HashCode for this struct (not garanteed to be unique)
public GetHashCode ( ) : int
return int
            public override int GetHashCode()
            {
                return left.GetHashCode() + top.GetHashCode() + right.GetHashCode() + bottom.GetHashCode();
            }