次の方法で共有


CodeStatementCollection.Insert(Int32, CodeStatement) メソッド

定義

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

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

パラメーター

index
Int32

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

value
CodeStatement

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

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

// Inserts a CodeStatement at index 0 of the collection.
collection->Insert( 0, gcnew CodeCommentStatement( "Test comment statement" ) );
// Inserts a CodeStatement at index 0 of the collection.
collection.Insert( 0, new CodeCommentStatement("Test comment statement") );
' Inserts a CodeStatement at index 0 of the collection.
collection.Insert(0, New CodeCommentStatement("Test comment statement"))

適用対象

こちらもご覧ください