CodeParameterDeclarationExpressionCollection.CopyTo 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將集合物件複製到指定索引開頭的一維 Array 執行個體。
public:
void CopyTo(cli::array <System::CodeDom::CodeParameterDeclarationExpression ^> ^ array, int index);
public void CopyTo (System.CodeDom.CodeParameterDeclarationExpression[] array, int index);
member this.CopyTo : System.CodeDom.CodeParameterDeclarationExpression[] * int -> unit
Public Sub CopyTo (array As CodeParameterDeclarationExpression(), index As Integer)
參數
一維 Array,是從集合複製之值的目的端。
- index
- Int32
要開始插入的陣列索引。
例外狀況
目的端陣列為多維。
-或-
在 CodeParameterDeclarationExpressionCollection 中的元素數目大於由 index
參數指定的目標陣列索引和目標陣列結尾之間的可用空間。
array
參數為 null
。
index
參數小於目標陣列的最小索引。
範例
下列範例示範如何將 的內容CodeParameterDeclarationExpressionCollectionArray複製到指定索引值的開頭。
// Copies the contents of the collection beginning at index 0 to the specified CodeParameterDeclarationExpression array.
// 'parameters' is a CodeParameterDeclarationExpression array.
collection->CopyTo( parameters, 0 );
// Copies the contents of the collection beginning at index 0 to the specified CodeParameterDeclarationExpression array.
// 'parameters' is a CodeParameterDeclarationExpression array.
collection.CopyTo( parameters, 0 );
' Copies the contents of the collection beginning at index 0 to the specified CodeParameterDeclarationExpression array.
' 'parameters' is a CodeParameterDeclarationExpression array.
collection.CopyTo(parameters, 0)