CodeTypeParameterCollection.CopyTo(CodeTypeParameter[], Int32) 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.
Copies the items in the collection to the specified one-dimensional Array at the specified index.
public:
void CopyTo(cli::array <System::CodeDom::CodeTypeParameter ^> ^ array, int index);
public void CopyTo (System.CodeDom.CodeTypeParameter[] array, int index);
member this.CopyTo : System.CodeDom.CodeTypeParameter[] * int -> unit
Public Sub CopyTo (array As CodeTypeParameter(), index As Integer)
Parameters
- array
- CodeTypeParameter[]
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
array
is multidimensional.
-or-
The number of elements in the CodeTypeParameterCollection is greater than the available space between the index of the target array specified by index
and the end of the target array.
array
is null
.
index
is less than the target array's lowest index.