BigListT Constructor (IEnumerableT) |
Initializes a new instance of the BigList with elements from the specified collection.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public BigList(
IEnumerable<T> collection
)
Public Sub New (
collection As IEnumerable(Of T)
)
public:
BigList(
IEnumerable<T>^ collection
)
new :
collection : IEnumerable<'T> -> BigList
Parameters
- collection
- Type: System.Collections.GenericIEnumerableT
The collection whose elements are copied to the new BigList.
See Also