Click or drag to resize
BigListTClone Method
Creates a new BigList that is a copy of this list.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public BigList<T> Clone()

Return Value

Type: BigListT
A copy of the current list
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.
See Also