IBindableVector.IndexOf(Object, UInt32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回向量中指定專案的索引。
public:
bool IndexOf(Platform::Object ^ value, [Out] unsigned int & index);
bool IndexOf(IInspectable const& value, [Out] uint32_t & index);
public bool IndexOf(object value, out uint index);
Public Function IndexOf (value As Object, ByRef index As UInteger) As Boolean
參數
- value
-
Object
Platform::Object
IInspectable
在向量中尋找的專案。
- index
-
UInt32
unsigned int
uint32_t
找到專案之以零起始的索引。 如果找不到專案,則會傳回 0,因此請務必檢查傳回值。
傳回
Boolean
bool
如果找到專案,則為true;如果找不到專案,則為false。
備註
使用 .NET 進行程式設計時,此介面會隱藏,開發人員應該使用 System.Collections.IList 介面。