ImmutableArray<T>::Inequality Operator (ImmutableArray<T>, ImmutableArray<T>)

 

Returns a value that indicates whether two arrays are not equal.

Namespace:   System.Collections.Immutable
Assembly:  System.Collections.Immutable (in System.Collections.Immutable.dll)

public:
static bool operator !=(
	ImmutableArray<T> left,
	ImmutableArray<T> right
)

Parameters

left
Type: System.Collections.Immutable::ImmutableArray<T>

The array to the left of the operator.

right
Type: System.Collections.Immutable::ImmutableArray<T>

The array to the right of the operator.

Return Value

Type: System::Boolean

true if the arrays are not equal; otherwise, false.

Return to top
Show: