IBindableVectorView.GetAt(UInt32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回向量中指定索引处的项。
public:
Platform::Object ^ GetAt(unsigned int index);
IInspectable GetAt(uint32_t const& index);
public object GetAt(uint index);
function getAt(index)
Public Function GetAt (index As UInteger) As Object
参数
- index
-
UInt32
unsigned int
uint32_t
要返回的向量中项的从零开始的索引。
返回
指定索引处的项。
注解
此接口支持在 C++ 中创建数据可绑定集合。 使用 .NET 编程时,应使用 ObservableCollection (Of T) 或实现 IList 和 INotifyCollectionChanged。