BigListT Constructor (IEnumerableT) |
Creates a new BigList initialized with the items from collection, in order.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic BigList(
IEnumerable<T> collection
)
public:
BigList(
IEnumerable<T>^ collection
)
Parameters
- collection
- Type: System.Collections.GenericIEnumerableT
The collection used to initialize the BigList.
Exceptions
RemarksInitializing the tree list with the elements of collection takes time O(N), where N is the number of
items in collection.
See Also