Vector2::Inequality Operator

Returns a value that indicates whether two specified vectors are not equal.

Namespace:  System.Numerics
Assembly:  System.Numerics.Vectors (in System.Numerics.Vectors.dll)

public:
static bool operator !=(
	Vector2 left, 
	Vector2 right
)

Parameters

left
Type: System.Numerics::Vector2

The first vector to compare.

right
Type: System.Numerics::Vector2

The second vector to compare.

Return Value

Type: System::Boolean
true if left and right are not equal; otherwise, false.
Show: