 | WritableCollectionT(IEnumerableT) Constructor |
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.IOAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic WritableCollection(
IEnumerable<T> collection
)
Public Sub New (
collection As IEnumerable(Of T)
)
public:
WritableCollection(
IEnumerable<T>^ collection
)
new :
collection : IEnumerable<'T> -> WritableCollection
Parameters
- collection IEnumerableT
- The collection whose elements are copied to the new list.
See Also