Wintellect.PowerCollections Namespace
Algorithms Class
GhostDoc Pro Sample Help File

BigList<(Of <(<'T>)>)> Constructor (BigList<(Of <(<'T>)>)>)

Creates a new BigList that is a copy of list.

Namespace:  Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax


public BigList(
	BigList<T> list
)
Public Sub New ( _
	list As BigList(Of T) _
)
public:
BigList(
	BigList<T>^ list
)

Parameters

list
Type: Wintellect.PowerCollections..::..BigList<(Of <(<'T>)>)>
The BigList to copy.

Exceptions


ExceptionCondition
ArgumentNullExceptionlist is null.

Remarks


Copying a BigList takes constant time, and little additional memory, since the storage for the items of the two lists is shared. However, changing either list will take additional time and memory. Portions of the list are copied when they are changed.