Table of Contents

Constructor Collection

Namespace
Alternet.Base.Collections
Assembly
Alternet.UI.Common.dll

Collection()

Initializes a new instance of the Collection<T> class.

public Collection()

Collection(IEnumerable<T>)

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

public Collection(IEnumerable<T> collection)

Parameters

collection IEnumerable<T>

The collection from which the elements are copied.

Collection(List<T>)

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

public Collection(List<T> list)

Parameters

list List<T>

The list from which the elements are copied.