ImmutableList<T>.Builder.GetRange(Int32, Int32) Method

Definition

Creates a shallow copy of a range of elements in the source immutable list.

public:
 virtual System::Collections::Immutable::ImmutableList<T> ^ GetRange(int index, int count);
public:
 System::Collections::Immutable::ImmutableList<T> ^ GetRange(int index, int count);
public System.Collections.Immutable.ImmutableList<T> GetRange (int index, int count);
abstract member GetRange : int * int -> System.Collections.Immutable.ImmutableList<'T>
override this.GetRange : int * int -> System.Collections.Immutable.ImmutableList<'T>
member this.GetRange : int * int -> System.Collections.Immutable.ImmutableList<'T>
Public Function GetRange (index As Integer, count As Integer) As ImmutableList(Of T)

Parameters

index
Int32

The zero-based index at which the range starts.

count
Int32

The number of elements in the range.

Returns

A shallow copy of a range of elements in the source immutable list.

Applies to