共用方式為


IBindableVectorView.IndexOf(Object, UInt32) 方法

定義

傳回向量中指定專案的索引。

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

備註

此介面支援在 C++ 中建立可系結的資料集合。 使用 .NET 進行程式設計時,您應該使用 ObservableCollection (Of T) 或實作 IListINotifyCollectionChanged

適用於

另請參閱