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