Table of Contents

Constructor ValueList

Namespace
GuildWars2.Collections
Assembly
GW2SDK.dll

ValueList()

Initializes a new instance of the ValueList<T> class that is empty.

public ValueList()

ValueList(int)

Initializes a new instance of the ValueList<T> class that is empty and has the specified initial capacity.

public ValueList(int capacity)

Parameters

capacity int

The number of elements that the new list can initially store.

ValueList(IEnumerable<T>)

Initializes a new instance of the ValueList<T> class that contains elements copied from the specified collection.

public ValueList(IEnumerable<T> collection)

Parameters

collection IEnumerable<T>

The collection whose elements are copied to the new list.