CodeParameterDeclarationExpressionCollection.Insert メソッド

定義

コレクション内の指定したインデックス位置に、指定した CodeParameterDeclarationExpression を挿入します。

public void Insert (int index, System.CodeDom.CodeParameterDeclarationExpression value);

パラメーター

index
Int32

指定したオブジェクトの挿入位置を示す、0 から始まるインデックス。

次の例では、 メソッドを使用 Insert して オブジェクトを CodeParameterDeclarationExpression に追加する方法を CodeParameterDeclarationExpressionCollection示します。

// Inserts a CodeParameterDeclarationExpression at index 0
// of the collection.
collection.Insert( 0, new CodeParameterDeclarationExpression(typeof(int), "testIntArgument") );

適用対象

製品 バージョン
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

こちらもご覧ください