Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

EqtBaseCollection<T>::CopyTo Method (array<T>^, Int32)

 

Copies all items in the collection to the provided array, starting with the provided index.

Namespace:   Microsoft.VisualStudio.TestTools.Common
Assembly:  Microsoft.VisualStudio.QualityTools.Common (in Microsoft.VisualStudio.QualityTools.Common.dll)

public:
virtual void CopyTo(
	array<T>^ array,
	int index
)

Parameters

array
Type: array<T>^

An array of type T.

index
Type: System::Int32

The index of the collection to start to copy items.

Type Parameters

T

A Type that defines the objects in the collection.

Notes to Implementers:

In derived classes, you must implement a custom version of this method by using the specific type that matches the generic type of your collection.

Return to top
Show: