ArraySlice<T>.Inequality Operator

Checks whether two array slices are not equal.

Definition

Namespace: Numerics.NET.Collections
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static bool operator !=(
	ArraySlice<T> left,
	ArraySlice<T> right
)

Parameters

left  ArraySlice<T>
An array slice.
right  ArraySlice<T>
An array slice.

Return Value

Boolean
true if left is not equal to right; otherwise false.

See Also