ImmutableList<T>.Builder.AddRange(IEnumerable<T>) Method

Definition

Adds a series of elements to the end of this list.

public:
 void AddRange(System::Collections::Generic::IEnumerable<T> ^ items);
public void AddRange (System.Collections.Generic.IEnumerable<T> items);
member this.AddRange : seq<'T> -> unit
Public Sub AddRange (items As IEnumerable(Of T))

Parameters

items
IEnumerable<T>

The elements to add to the end of the list.

Applies to