ImmutableList<T>.Builder.GetRange(Int32, Int32) メソッド

定義

コピー元の変更できないリスト内の、ある範囲の要素の簡易コピーを作成します。

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)

パラメーター

index
Int32

範囲の開始位置を示す、0 から始まるインデックス番号。

count
Int32

範囲内の要素の数。

戻り値

コピー元の変更できないリスト内の、ある範囲の要素の簡易コピー。

適用対象