Method InsertRange
- Namespace
- GuildWars2.Collections
- Assembly
- GuildWars2.dll
InsertRange(int, IEnumerable<T>)
Creates a new ImmutableValueList<T> with the specified items inserted at the specified index.
public ImmutableValueList<T> InsertRange(int index, IEnumerable<T> items)
Parameters
indexintThe zero-based index at which the new items should be inserted.
itemsIEnumerable<T>The items to insert.
Returns
- ImmutableValueList<T>
A new list with the items inserted.