CodeCatchClauseCollection.Insert(Int32, CodeCatchClause) メソッド

定義

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

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

パラメーター

index
Int32

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

value
CodeCatchClause

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

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

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

適用対象

こちらもご覧ください