CodeExpressionCollection.CopyTo(CodeExpression[], Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将集合对象复制到一维 Array 实例(从指定索引处开始)。
public:
void CopyTo(cli::array <System::CodeDom::CodeExpression ^> ^ array, int index);
public void CopyTo (System.CodeDom.CodeExpression[] array, int index);
member this.CopyTo : System.CodeDom.CodeExpression[] * int -> unit
Public Sub CopyTo (array As CodeExpression(), index As Integer)
参数
- array
- CodeExpression[]
一维 Array,它是从集合所复制值的目标位置。
- index
- Int32
插入开始处的数组的索引。
例外
array
参数为 null
。
index
参数小于目标数组的最小索引。
示例
以下示例演示如何将 的内容CodeExpressionCollectionCodeExpression复制到从索引值 0 开始的数组。
// Copies the contents of the collection beginning at index 0 to the specified CodeExpression array.
// 'expressions' is a CodeExpression array.
collection->CopyTo( expressions, 0 );
// Copies the contents of the collection beginning at index 0 to the specified CodeExpression array.
// 'expressions' is a CodeExpression array.
collection.CopyTo( expressions, 0 );
' Copies the contents of the collection beginning at index 0 to the specified CodeExpression array.
' 'expressions' is a CodeExpression array.
collection.CopyTo(expressions, 0)