IVector<T>.RemoveAt(UInt32) 方法

定义

移除向量中指定索引处的项。

public:
 void RemoveAt(unsigned int index);
void RemoveAt(uint32_t const& index);
public void RemoveAt(uint index);
Public Sub RemoveAt (index As UInteger)

参数

index
UInt32

unsigned int

uint32_t

要移除的向量项的从零开始的索引。

注解

使用 .NET 编程时,此接口是隐藏的,应使用 System.Collections.Generic.IList<T> 接口。

如果索引在范围外,视图将引发异常。

C++/WinRT 如果索引在范围外,矢量将引发 hresult_out_of_bounds 异常。

C++/CX 如果索引在范围外,矢量将引发 OutOfBoundsException 异常。

适用于

另请参阅