Udostępnij za pośrednictwem


CodeCatchClauseCollection.Insert(Int32, CodeCatchClause) Metoda

Definicja

Wstawia określony CodeCatchClause obiekt do kolekcji w określonym indeksie.

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)

Parametry

index
Int32

Indeks oparty na zera, w którym należy wstawić określony obiekt.

value
CodeCatchClause

CodeCatchClause Obiekt do wstawienia.

Przykłady

W poniższym przykładzie pokazano, jak za pomocą Insert metody dodać CodeCatchClause obiekt do obiektu 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"))

Dotyczy

Zobacz też