ImmutableList<T>.Builder.GetRange(Int32, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在源不可变列表中创建元素范围的浅表复制。
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
范围开始处的从零开始的索引。
- count
- Int32
范围中的元素数。
返回
在源不可变列表中元素范围的浅表复制。