IVector<T>.ReplaceAll(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.
Replaces all the items in the vector with the specified items.
public:
void ReplaceAll(Platform::Array <T> ^ items);
void ReplaceAll(winrt::array_view <T> const& items);
public void ReplaceAll(T[] items);
Public Sub ReplaceAll (items As T())
Parameters
- items
- T[]
The collection of items to add to the vector.
Remarks
When programming with .NET, this interface is hidden, and you should use the System.Collections.Generic.IList<T> interface.