IListContract<T>.IndexOf(T) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回 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
集合中的項目。
傳回
指定之項目的索引。
例外狀況
備註
如果集合中有數個相同類型的對象,這個方法會識別集合中第一次出現指定型別的專案索引。
方法 GetItem 不會移除位於指定索引處的專案。 若要從 IListContract<T> 集合中移除專案,請使用 RemoveAt 方法。