CodeCommentStatementCollection.Insert(Int32, CodeCommentStatement) メソッド

定義

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

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

パラメーター

index
Int32

項目を挿入する位置の 0 から始まるインデックス番号。

value
CodeCommentStatement

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

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

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

適用対象

こちらもご覧ください