CodeAttributeArgumentCollection.CopyTo(CodeAttributeArgument[], Int32) 方法
定义
public:
void CopyTo(cli::array <System::CodeDom::CodeAttributeArgument ^> ^ array, int index);
public void CopyTo (System.CodeDom.CodeAttributeArgument[] array, int index);
member this.CopyTo : System.CodeDom.CodeAttributeArgument[] * int -> unit
Public Sub CopyTo (array As CodeAttributeArgument(), index As Integer)
参数
- array
- CodeAttributeArgument[]
一维 Array,它是从集合所复制值的目标位置。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.
例外
该目标数组是多维数组。The destination array is multidimensional.
- 或 --or-
CodeAttributeArgumentCollection 中的元素数大于 index 参数所指定的目标数组索引位置与目标数组结尾位置之间的可用空间。The number of elements in the CodeAttributeArgumentCollection 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.
array 参数为 null。The array parameter is null.
index 参数小于目标数组的最小索引。The index parameter is less than the target array's minimum index.
示例
下面的示例演示如何将对象的内容复制 CodeAttributeArgumentCollection 到以 CodeAttributeArgument 指定索引值开头的数组。The following example demonstrates how to copy the contents of a CodeAttributeArgumentCollection object to a CodeAttributeArgument array beginning at a specified index value.
// Copies the contents of the collection beginning at index 0,
// to the specified CodeAttributeArgument array.
// 'arguments' is a CodeAttributeArgument array.
collection->CopyTo( arguments, 0 );
// Copies the contents of the collection beginning at index 0,
// to the specified CodeAttributeArgument array.
// 'arguments' is a CodeAttributeArgument array.
collection.CopyTo( arguments, 0 );
' Copies the contents of the collection beginning at index 0,
' to the specified CodeAttributeArgument array.
' 'arguments' is a CodeAttributeArgument array.
collection.CopyTo(arguments, 0)