ActivityCollection.IList<Activity>.Item[Int32] 属性

定义

获取或设置指定索引处的元素。

property System::Workflow::ComponentModel::Activity ^ System::Collections::Generic::IList<System::Workflow::ComponentModel::Activity>::Item[int] { System::Workflow::ComponentModel::Activity ^ get(int index); void set(int index, System::Workflow::ComponentModel::Activity ^ value); };
System.Workflow.ComponentModel.Activity System.Collections.Generic.IList<System.Workflow.ComponentModel.Activity>.Item[int index] { get; set; }
member this.System.Collections.Generic.IList<System.Workflow.ComponentModel.Activity>.Item(int) : System.Workflow.ComponentModel.Activity with get, set
 Property Item(index As Integer) As Activity Implements IList(Of Activity).Item

参数

index
Int32

要获取或设置的元素的从零开始的索引。

属性值

指定索引处的 Object

实现

例外

index 不是 IList 中的有效索引。

ICollection 为只读。

注解

通过使用以下语法,此属性提供访问集合中特定元素的能力:myCollection[index]。

C# 语言使用 this 关键字来定义索引器,而不是实现 Item 属性。 Visual Basic 将 Item 实现为默认属性,该属性提供相同的索引功能。

适用于