LinkedList<T> Constructor (IEnumerable<T>)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Initializes a new instance of the LinkedList<T> class that contains elements copied from the specified IEnumerable and has sufficient capacity to accommodate the number of elements copied.
Namespace: System.Collections.Generic
Assembly: System (in System.dll)
Syntax
'Declaration
Public Sub New ( _
collection As IEnumerable(Of T) _
)
public LinkedList(
IEnumerable<T> collection
)
Parameters
- collection
Type: System.Collections.Generic.IEnumerable<T>
The IEnumerable whose elements are copied to the new LinkedList<T>.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | collection is nulla null reference (Nothing in Visual Basic). |
Remarks
LinkedList<T> accepts nulla null reference (Nothing in Visual Basic) as a valid Value for reference types and allows duplicate values.
If collection has no elements then the new LinkedList<T> is empty, and the First and Last properties contain nulla null reference (Nothing in Visual Basic).
This constructor is an O(n) operation, where n is the number of elements in collection.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.