ActivityCollection.IList<Activity>.RemoveAt(Int32) 方法

定义

移除位于指定索引处的 IList 项。

 virtual void System.Collections.Generic.IList<System.Workflow.ComponentModel.Activity>.RemoveAt(int index) = System::Collections::Generic::IList<System::Workflow::ComponentModel::Activity ^>::RemoveAt;
void IList<Activity>.RemoveAt (int index);
abstract member System.Collections.Generic.IList<System.Workflow.ComponentModel.Activity>.RemoveAt : int -> unit
override this.System.Collections.Generic.IList<System.Workflow.ComponentModel.Activity>.RemoveAt : int -> unit
Sub RemoveAt (index As Integer) Implements IList(Of Activity).RemoveAt

参数

index
Int32

要移除的项的从零开始的索引。

实现

例外

index 不是 IList 中的有效索引。

ICollection 为只读。

注解

在由连续的元素组成的集合(如列表)中,已移除元素下面的元素将上移以占据空出的位置。 如果集合具有索引,则移动的元素的索引也将更新。 此行为不适用于元素按概念划分为不同存储桶的集合,如哈希表。

适用于