SuperMap.WinRT.Core.Rectangle2D.GetHashCode C# (CSharp) Method

GetHashCode() public method

${core_Rectangle2D_method_GetHashCode_D}
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return ((this.Left.GetHashCode() ^ this.Bottom.GetHashCode()) ^ this.Right.GetHashCode() ^ this.Top.GetHashCode());
        }