Table of Contents

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

index int

The zero-based index at which the new items should be inserted.

items IEnumerable<T>

The items to insert.

Returns

ImmutableValueList<T>

A new list with the items inserted.