| WritableCollectionT Constructor (IEnumerableT) |
Initializes a new instance of the
WritableCollectionT class that
contains elements copied from the specified collection and has sufficient capacity to accommodate the number of elements copied.
Namespace:
Ookii.Jumbo.IO
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public WritableCollection(
IEnumerable<T> collection
)
Public Sub New (
collection As IEnumerable(Of T)
)
public:
WritableCollection(
IEnumerable<T>^ collection
)
new :
collection : IEnumerable<'T> -> WritableCollection
Parameters
- collection
- Type: System.Collections.GenericIEnumerableT
The collection whose elements are copied to the new list.
See Also