SuperMap.WinRT.Core.Rectangle2D.GetHashCode C# (CSharp) 메소드

GetHashCode() 공개 메소드

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