CodeTypeMemberCollection.CopyTo(CodeTypeMember[], Int32) Method

Definition

Copies the collection objects to a one-dimensional Array instance, beginning at the specified index.

public void CopyTo (System.CodeDom.CodeTypeMember[] array, int index);

Parameters

array
CodeTypeMember[]

The one-dimensional Array that is the destination of the values copied from the collection.

index
Int32

The index of the array at which to begin inserting.

Exceptions

The destination array is multidimensional.

-or-

The number of elements in the CodeTypeMemberCollection is greater than the available space between the index of the target array specified by the index parameter and the end of the target array.

The array parameter is null.

The index parameter is less than the target array's minimum index.

Examples

The following code example demonstrates how to copy the contents of a CodeTypeMemberCollection to an array, beginning at the specified index value.

// Copies the contents of the collection, beginning at index 0,
// to the specified CodeTypeMember array.
// 'members' is a CodeTypeMember array.
collection.CopyTo( members, 0 );

Applies to

Product Versions
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also