ImmutableArray<T>::AddRange Method (IEnumerable<T>^)

 

Returns a copy of the original array with the specified elements added to the end of the array.

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

public:
ImmutableArray<T> AddRange(
	IEnumerable<T>^ items
)

Parameters

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

The elements to add to the array.

Return Value

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

A new array with the elements added.

Return to top
Show: