Rect.Inequality(Rect, Rect) 연산자

정의

같지 않음을 위해 두 사각형을 비교합니다.

public:
 static bool operator !=(System::Windows::Rect rect1, System::Windows::Rect rect2);
public static bool operator !=(System.Windows.Rect rect1, System.Windows.Rect rect2);
static member op_Inequality : System.Windows.Rect * System.Windows.Rect -> bool
Public Shared Operator != (rect1 As Rect, rect2 As Rect) As Boolean

매개 변수

rect1
Rect

비교할 첫 번째 사각형입니다.

rect2
Rect

비교할 두 번째 사각형입니다.

반품

true 사각형에 동일한 Location 값과 값이 없으면 이고 Size , false그렇지 않으면 .

예제

다음 예제에서는 연산자를 사용하여 두 사각형이 Inequality 정확히 같지 않은지 확인하는 방법을 보여 줍니다.

private Boolean overloadedInequalityOperatorExample()
{
    // Initialize new rectangle.
    Rect myRectangle = new Rect();

    // The Location property specifies the coordinates of the upper left-hand 
    // corner of the rectangle. 
    myRectangle.Location = new Point(10, 5);

    // Set the Size property of the rectangle with a width of 200
    // and a height of 50.
    myRectangle.Size = new Size(200, 50);

    // Create second rectangle to compare to the first.
    Rect myRectangle2 = new Rect();
    myRectangle2.Location = new Point(0, 0);
    myRectangle2.Size = new Size(200, 50);

    // Check if the two Rects are not equal using the overloaded inequality operator.
    // notEqual is true because although the size of each rectangle is the same,
    // the locations are different.
    bool notEqual = (myRectangle != myRectangle2);

    // Returns true.
    return notEqual;
}
Private Function overloadedInequalityOperatorExample() As Boolean
    ' Initialize new rectangle.
    Dim myRectangle As New Rect()

    ' The Location property specifies the coordinates of the upper left-hand 
    ' corner of the rectangle. 
    myRectangle.Location = New Point(10, 5)

    ' Set the Size property of the rectangle with a width of 200
    ' and a height of 50.
    myRectangle.Size = New Size(200, 50)

    ' Create second rectangle to compare to the first.
    Dim myRectangle2 As New Rect()
    myRectangle2.Location = New Point(0, 0)
    myRectangle2.Size = New Size(200, 50)

    ' Check if the two Rects are not equal using the overloaded inequality operator.
    ' notEqual is true because although the size of each rectangle is the same,
    ' the locations are different.
    Dim notEqual As Boolean = (myRectangle <> myRectangle2)

    ' Returns true.
    Return notEqual

End Function

설명

이 작업은 개체 같지 않음을 테스트합니다.

이 비교에서 두 인스턴스는 Double.NaN 같은 것으로 간주됩니다.

메모

사각형의 위치와 차원은 값으로 Double 설명됩니다. 작동 시 값이 정밀도를 잃을 수 있으므로 Double 논리적으로 동일한 두 값 간의 비교가 실패할 수 있습니다.

이 연산자에 해당하는 메서드는 다음과 같습니다. Rect.Equals(Rect, Rect)

적용 대상