ImmutableArray<T>::IImmutableList<T>::RemoveRange Method (IEnumerable<T>^, IEqualityComparer<T>^)

 

Removes the specified items from this array.

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

private:
virtual IImmutableList<T>^ RemoveRange(
	IEnumerable<T>^ items,
	IEqualityComparer<T>^ equalityComparer
) sealed = IImmutableList<T>::RemoveRange

Parameters

items
Type: System.Collections.Generic::IEnumerable<T>^

The items to remove if matches are found in this list.

equalityComparer
Type: System.Collections.Generic::IEqualityComparer<T>^

The equality comparer to use in the search.

Return Value

Type: System.Collections.Immutable::IImmutableList<T>^

A new array with the elements removed.

This member is an explicit interface member implementation. It can be used only when the ImmutableArray<T> instance is cast to an IImmutableList<T> interface.

Return to top
Show: