Method InsertRange
- Namespace
- GuildWars2.Collections
- Assembly
- GuildWars2.dll
InsertRange(int, IEnumerable<T>)
Inserts the specified elements at the specified index in the immutable list.
IImmutableValueList<T> InsertRange(int index, IEnumerable<T> items)
Parameters
indexintThe zero-based index at which the new elements should be inserted.
itemsIEnumerable<T>The elements to insert.
Returns
- IImmutableValueList<T>
A new immutable list that includes the specified elements.