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

 

Checks for inequality between two array.

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

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

Parameters

left
Type: System::Nullable<ImmutableArray<T>>

The object to the left of the operator.

right
Type: System::Nullable<ImmutableArray<T>>

The object to the right of the operator.

Return Value

Type: System::Boolean

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

Return to top
Show: