SchedulerCollection<T>.CopyTo 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.
Overloads
CopyTo(Array, Int32) |
Copies items from the collection to an array at the specified index. |
CopyTo(T[], Int32) |
Copies items from the collection to an array at the specified index. |
CopyTo(Array, Int32)
Copies items from the collection to an array at the specified index.
public void CopyTo (Array array, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Parameters
- array
- Array
An array to which you want to copy the contents of the collection.
- index
- Int32
The zero-based index in array at which copying begins.
Implements
Applies to
CopyTo(T[], Int32)
Copies items from the collection to an array at the specified index.
public void CopyTo (T[] array, int arrayIndex);
abstract member CopyTo : 'T[] * int -> unit
override this.CopyTo : 'T[] * int -> unit
Public Sub CopyTo (array As T(), arrayIndex As Integer)
Parameters
- array
- T[]
An array to which you want to copy the contents of the collection.
- arrayIndex
- Int32
The zero-based index in array at which copying begins.