ImmutableArray<T>::IImmutableList<T>::AddRange Method (IEnumerable<T>^)
Returns a copy of the original array with the specified elements added to the end of the array.
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 elements to add to the end of the array.
Return Value
Type: System.Collections.Immutable::IImmutableList<T>^A new array with the elements added to the end.
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.
Show: