Click or drag to resize

ImmutableListTAddRange Method

Adds the elements of the specified collection to the end of the ListT.

Namespace: GSF.Immutable
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.249-beta+56964f8aed6f3f2e54faec1539f7ce0ba6548fdf
Syntax
public void AddRange(
	IEnumerable<T> collection
)
View Source

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
See Also