ActivityCollection.IList<Activity>.IndexOf(Activity) 方法

定义

确定 IList 中特定项的索引。

 virtual int System.Collections.Generic.IList<System.Workflow.ComponentModel.Activity>.IndexOf(System::Workflow::ComponentModel::Activity ^ item) = System::Collections::Generic::IList<System::Workflow::ComponentModel::Activity ^>::IndexOf;
int IList<Activity>.IndexOf (System.Workflow.ComponentModel.Activity item);
abstract member System.Collections.Generic.IList<System.Workflow.ComponentModel.Activity>.IndexOf : System.Workflow.ComponentModel.Activity -> int
override this.System.Collections.Generic.IList<System.Workflow.ComponentModel.Activity>.IndexOf : System.Workflow.ComponentModel.Activity -> int
Function IndexOf (item As Activity) As Integer Implements IList(Of Activity).IndexOf

参数

item
Activity

要在 IList 中定位的对象。

返回

Int32

如果在列表中找到,则为 item 的索引;否则为 -1。

实现

注解

如果某对象在列表中出现多次,则 IndexOf 方法将始终返回找到的第一个实例。

适用于