共用方式為


IListContract<T>.IndexOf(T) 方法

定義

傳回 IListContract<C> 集合中特定項目的索引。

public:
 int IndexOf(T item);
public int IndexOf (T item);
abstract member IndexOf : 'T -> int
Public Function IndexOf (item As T) As Integer

參數

item
T

集合中的項目。

傳回

指定之項目的索引。

例外狀況

index 小於零。

-或-

index 等於或大於 GetCount() 方法的傳回值。

備註

如果集合中有數個相同類型的對象,這個方法會識別集合中第一次出現指定型別的專案索引。

方法 GetItem 不會移除位於指定索引處的專案。 若要從 IListContract<T> 集合中移除專案,請使用 RemoveAt 方法。

適用於