IVector<T>.GetAt(UInt32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回向量中指定索引处的项。
public:
T GetAt(unsigned int index);
T GetAt(uint32_t const& index);
public T GetAt(uint index);
Public Function GetAt (index As UInteger) As T
参数
- index
-
UInt32
unsigned int
uint32_t
该项的从零开始的索引。
返回
T
指定索引处的项。
注解
使用 .NET 编程时,此接口是隐藏的,应使用 System.Collections.Generic.IList<T> 接口。
如果索引在范围外,视图将引发异常。
C++/WinRT 如果索引在范围外,矢量将引发
hresult_out_of_bounds
异常。
C++/CX 如果索引在范围外,矢量将引发
OutOfBoundsException
异常。