IVector<T>.GetMany(UInt32, T[]) Method
Definition
Gets a collection of items from the vector beginning at the given index.
public:
unsigned int GetMany(unsigned int startIndex, Platform::Array <T> ^ items);
uint32_t GetMany(uint32_t startIndex, std::Array <T> const & items);
public uint GetMany(uint startIndex, T[] items);
Public Function GetMany (startIndex As UInteger, items As T()) As UInteger
Parameters
- startIndex
- UInt32
The zero-based index to start at.
- items
- T[]
An array to copy the items into.
Returns
A status code indicating the result of the operation.
Remarks
When programming with .NET, this interface is hidden. Use the IList interface instead.