BigListT Constructor (IEnumerableT, Int64) |
Initialize a new big list with a collection and known size.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public BigList(
IEnumerable<T> collection,
long collectionCount
)
Public Sub New (
collection As IEnumerable(Of T),
collectionCount As Long
)
public:
BigList(
IEnumerable<T>^ collection,
long long collectionCount
)
new :
collection : IEnumerable<'T> *
collectionCount : int64 -> BigList
Parameters
- collection
- Type: System.Collections.GenericIEnumerableT
Items to add - collectionCount
- Type: SystemInt64
Size of list
See Also