ImmutableListTAddRange Method
Adds the elements of the specified collection to the end of the ListT.
Namespace: SnapDB.ImmutablesAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public void AddRange(
IEnumerable<T> collection
)
Public Sub AddRange (
collection As IEnumerable(Of T)
)
public:
void AddRange(
IEnumerable<T>^ collection
)
function AddRange(collection);
Parameters
- collection IEnumerableT
-
The collection whose elements should be added to the end of the ListT.
The collection itself cannot be null, but it can contain elements that are null.