Point.Inequality(Point, Point) Operador

Definición

Compara la desigualdad de dos estructuras Point.

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

Parámetros

point1
Point

Primer punto que se va a comparar.

point2
Point

Segundo punto que se va a comparar.

Devoluciones

Boolean

Es true si point1 y point2 tienen coordenadas X o Y diferentes; es false si point1 y point2 tienen las mismas coordenadas X y Y.

Ejemplos

En el ejemplo siguiente se muestra cómo comprobar si dos Point estructuras no son iguales mediante el operador sobrecargado (!=).

private Boolean overloadedInequalityOperatorExample()
{
    Point point1 = new Point(20, 30);
    Point point2 = new Point(45, 70);

    // Check whether the two Points are not equal, using the overloaded 
    // inequality operator.
    // areNotEqual is True.
    Boolean areNotEqual = (point1 != point2);

    return areNotEqual;
}
Private Function overloadedInequalityOperatorExample() As Boolean
    Dim point1 As New Point(20, 30)
    Dim point2 As New Point(45, 70)

    ' Check whether the two Points are not equal, using the overloaded 
    ' inequality operator.
    ' areNotEqual is True.
    Dim areNotEqual As Boolean = (point1 <> point2)

    Return areNotEqual

End Function

Comentarios

Las coordenadas y Y de un punto X se describen mediante Double valores. Dado Double que los valores pueden perder precisión cuando se opera, una comparación entre dos Point valores que son lógicamente iguales podría producir un error.

Se aplica a