ImmutableArray<T>.RemoveAt(Int32) 方法

定义

返回一个数组,该数组的元素位于移除的指定位置。

public:
 System::Collections::Immutable::ImmutableArray<T> RemoveAt(int index);
public System.Collections.Immutable.ImmutableArray<T> RemoveAt(int index);
member this.RemoveAt : int -> System.Collections.Immutable.ImmutableArray<'T>
Public Function RemoveAt (index As Integer) As ImmutableArray(Of T)

参数

index
Int32

要从返回的数组中移除的元素的从 0 开始的索引。

返回

删除了指定索引处的项的新数组。

适用于