Vector<T>.Inequality Operator

Returns a value indicating whether two instances of vector are not equal.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static bool operator !=(
	Vector<T> left,
	Vector<T> right
)

Parameters

left  Vector<T>
A vector.
right  Vector<T>
A vector.

Return Value

Boolean
true if the two vectors have different lengths, or not all their elements are identical; otherwise false.

See Also