SynchronizedReadOnlyCollection<T>.CopyTo(T[], Int32) Method
Definition
Copies the elements of the collection to a specified array, starting at a particular index.
public:
virtual void CopyTo(cli::array <T> ^ array, int index);
public void CopyTo (T[] array, int index);
abstract member CopyTo : 'T[] * int -> unit
override this.CopyTo : 'T[] * int -> unit
Public Sub CopyTo (array As T(), index As Integer)
Parameters
- array
- T[]
The Array that is the destination for the elements copied from the collection.
- index
- Int32
The zero-based index in the array at which copying begins.