Table of Contents

Method AddRange

Namespace
Anvil.API
Assembly
NWN.Anvil.dll

AddRange<T>(IList<T>, IEnumerable<T>)

Adds a range of values to the specified IList.

public static void AddRange<T>(this IList<T> list, IEnumerable<T> values)

Parameters

list IList<T>

The list to update.

values IEnumerable<T>

The elements to add to the list.

Type Parameters

T

The list element type.