CodeExpressionCollection.Insert(Int32, CodeExpression) メソッド

定義

このコレクション内の指定したインデックス位置に、指定した CodeExpression オブジェクトを挿入します。

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

パラメーター

index
Int32

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

value
CodeExpression

挿入する CodeExpression オブジェクト。

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

// Inserts a CodeExpression at index 0 of the collection.
collection->Insert( 0, gcnew CodePrimitiveExpression( true ) );
// Inserts a CodeExpression at index 0 of the collection.
collection.Insert( 0, new CodePrimitiveExpression(true) );
' Inserts a CodeExpression at index 0 of the collection.
collection.Insert(0, New CodePrimitiveExpression(True))

適用対象

こちらもご覧ください