IVector<T>.InsertAt(UInt32, T) 方法

定义

在向量中的指定索引处插入项。

public:
 void InsertAt(unsigned int index, T value);
void InsertAt(uint32_t const& index, T const& value);
public void InsertAt(uint index, T value);
Public Sub InsertAt (index As UInteger, value As T)

参数

index
UInt32

unsigned int

uint32_t

从零开始的索引。

value
T

要插入的项。

注解

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

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

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

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

适用于

另请参阅