Constructor ValueList
- Namespace
- GuildWars2.Collections
- Assembly
- GuildWars2.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
capacityintThe 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
collectionIEnumerable<T>The collection whose elements are copied to the new list.