BigList<(Of <(<'T>)>)> Constructor (IEnumerable<(Of <(<'T>)>)>, Int32)
Creates a new BigList initialized with a given number of copies of the items from collection, in order.
Namespace:
Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
public BigList( IEnumerable<T> collection, int copies )
Public Sub New ( _ collection As IEnumerable(Of T), _ copies As Integer _ )
public: BigList( IEnumerable<T>^ collection, int^ copies )
Parameters
- collection
- Type: IEnumerable<(Of <(<'T>)>)>
The collection used to initialize the BigList.
- copies
- Type: Int32
Number of copies of the collection to use.
Exceptions
Exception | Condition |
---|---|
ArgumentOutOfRangeException | copies is negative. |
ArgumentNullException | collection is null. |