LinkedList()

LinkedList::LinkedList() constructor

Creates empty LinkedList.

System::Collections::Generic::LinkedList<T>::LinkedList()

LinkedList::LinkedList(const SharedPtr<IEnumerable<T>>&) constructor

Copy constructor.

System::Collections::Generic::LinkedList<T>::LinkedList(const SharedPtr<IEnumerable<T>> &collection)

Arguments

ParameterTypeDescription
collectionconst SharedPtr<IEnumerable<T>>&Collection to copy data from.

See Also