共用方式為


CodeParameterDeclarationExpressionCollection.Insert 方法

定義

將指定的 CodeParameterDeclarationExpression 插入至集合中的指定索引處。

public:
 void Insert(int index, System::CodeDom::CodeParameterDeclarationExpression ^ value);
public void Insert (int index, System.CodeDom.CodeParameterDeclarationExpression value);
member this.Insert : int * System.CodeDom.CodeParameterDeclarationExpression -> unit
Public Sub Insert (index As Integer, value As CodeParameterDeclarationExpression)

參數

index
Int32

以零起始的索引,是應將指定物件插入的位置。

範例

下列範例示範如何使用 Insert 方法將 物件新增 CodeParameterDeclarationExpressionCodeParameterDeclarationExpressionCollection

// Inserts a CodeParameterDeclarationExpression at index 0 
// of the collection.
collection->Insert( 0, gcnew CodeParameterDeclarationExpression( int::typeid,"testIntArgument" ) );
// Inserts a CodeParameterDeclarationExpression at index 0
// of the collection.
collection.Insert( 0, new CodeParameterDeclarationExpression(typeof(int), "testIntArgument") );
' Inserts a CodeParameterDeclarationExpression at index 0 
' of the collection.
collection.Insert(0, New CodeParameterDeclarationExpression(GetType(Integer), "testIntArgument"))

適用於

另請參閱