IVector<T>.GetMany(UInt32, T[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
unsigned int GetMany(unsigned int startIndex, Platform::Array <T> ^ items);
uint32_t GetMany(uint32_t const& startIndex, winrt::array_view <T> & items);
public uint GetMany(uint startIndex, T[] items);
Public Function GetMany (startIndex As UInteger, items As T()) As UInteger
Parameters
- startIndex
-
UInt32
unsigned int
uint32_t
The zero-based index to start at.
- items
- T[]
An array that receives the items copied from the vector.
C++/WinRT A winrt::array_view that receives the items copied from the vector.
Returns
The number of items that were retrieved. This value can be less than the size of items if the end of the vector is reached.
Remarks
When programming with .NET, this interface is hidden. Use the IList interface instead.
C++/WinRT In addition to passing a winrt::array_view<T>, you can pass any object that's convertible to a winrt::array_view<T>, such as these examples.
- C++ std::array<T, N>
- C-style array of T
- C++ std::vector<T>
- { pointer, length }, where pointer is a pointer to a buffer of T objects, and length is the number of entries in the buffer
- { first, last }, where first and last represent a range of T objects [first, last)
If the start index is greater than the size of the collection, the view will throw an exception.
C++/WinRT If the start index is greater than the size of the collection, the view will throw a
hresult_out_of_bounds
exception.
C++/CX If the start index is greater than the size of the collection, the view will throw a
OutOfBoundsException
exception.