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"))

适用于

另请参阅