The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
ImmutableList<T>::IImmutableList<T>::AddRange Method (IEnumerable<T>^)
Adds the specified values to this immutable list.
Assembly: System.Collections.Immutable (in System.Collections.Immutable.dll)
private: virtual IImmutableList<T>^ AddRange( IEnumerable<T>^ items ) sealed = IImmutableList<T>::AddRange
Parameters
- items
-
Type:
System.Collections.Generic::IEnumerable<T>^
The values to add.
Return Value
Type: System.Collections.Immutable::IImmutableList<T>^A new list with the elements added, or this list if the elements are already in the list.
This member is an explicit interface member implementation. It can be used only when the ImmutableList<T> instance is cast to an IImmutableList<T> interface.
Show: