Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 965 Bytes

ivector_1_removeat_1960564133.md

File metadata and controls

36 lines (26 loc) · 965 Bytes
-api-id -api-type
M:Windows.Foundation.Collections.IVector`1.RemoveAt(System.UInt32)
winrt method

Windows.Foundation.Collections.IVector.RemoveAt

-description

Removes the item at the specified index in the vector.

-parameters

-param index

The zero-based index of the vector item to remove.

-remarks

When programming with .NET, this interface is hidden, and you should use the System.Collections.Generic.IList<T> interface.

If the index is out of range, the view will throw an exception.

C++/WinRT If the index is out of range, the vector will throw a hresult_out_of_bounds exception.

C++/CX If the index is out of range, the vector will throw a OutOfBoundsException exception.

-examples

-see-also

IVector<T>