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

Индекс, отсчитываемый от нуля, по которому следует вставить указанный объект.

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"))

Применяется к

См. также раздел